Skip to content

Commit

Permalink
fix import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
maorfr committed Mar 16, 2019
1 parent 4c7e401 commit 5d29bd5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cmd/skbn.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"
"os"

"skbn/pkg/skbn"
"github.com/maorfr/skbn/pkg/skbn"

"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion examples/code/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"log"
"time"

"skbn/pkg/skbn"
"github.com/maorfr/skbn/pkg/skbn"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions pkg/skbn/gcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ package skbn
import (
"context"
"fmt"
"google.golang.org/api/iterator"
"io"
"log"
"path/filepath"
"strings"

"skbn/pkg/utils"
"github.com/maorfr/skbn/pkg/utils"

"cloud.google.com/go/storage"
"google.golang.org/api/iterator"
_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/skbn/kube.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"path/filepath"
"strings"

"skbn/pkg/utils"
"github.com/maorfr/skbn/pkg/skbn"

core_v1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/runtime"
Expand Down
2 changes: 1 addition & 1 deletion pkg/skbn/s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strconv"
"strings"

"skbn/pkg/utils"
"github.com/maorfr/skbn/pkg/skbn"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
Expand Down
2 changes: 1 addition & 1 deletion pkg/skbn/skbn.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"math"
"path/filepath"

"skbn/pkg/utils"
"github.com/maorfr/skbn/pkg/skbn"

"github.com/djherbis/buffer"
"gopkg.in/djherbis/nio.v2"
Expand Down

0 comments on commit 5d29bd5

Please sign in to comment.