Skip to content
This repository has been archived by the owner on Dec 1, 2020. It is now read-only.

Commit

Permalink
rename all import online-net -> scaleway
Browse files Browse the repository at this point in the history
  • Loading branch information
SegFault42 committed Jun 20, 2018
1 parent 1f2b699 commit a2e52a8
Show file tree
Hide file tree
Showing 18 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .goxc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"PackageVersion": "0.0.1",
"TaskSettings": {
"publish-github": {
"owner": "online-net",
"owner": "scaleway",
"prerelease": false,
"repository": "c14-cli"
},
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM golang:1.6
COPY . /go/src/github.com/online-net/c14-cli
WORKDIR /go/src/github.com/online-net/c14-cli
COPY . /go/src/github.com/scaleway/c14-cli
WORKDIR /go/src/github.com/scaleway/c14-cli
RUN go install -v ./cmd/c14
ENTRYPOINT ["c14"]
CMD ["help"]
2 changes: 1 addition & 1 deletion cmd/c14/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/apex/log"
"github.com/apex/log/handlers/text"
"github.com/juju/errors"
"github.com/online-net/c14-cli/pkg/commands"
"github.com/scaleway/c14-cli/pkg/commands"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package: github.com/online-net/c14-cli
package: github.com/scaleway/c14-cli
import:
- package: github.com/QuentinPerez/go-encodeUrl
- package: github.com/apex/log
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/auth/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"github.com/QuentinPerez/go-encodeUrl"
"github.com/juju/errors"
"github.com/online-net/c14-cli/pkg/utils/configstore"
"github.com/scaleway/c14-cli/pkg/utils/configstore"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"sync"

"github.com/apex/log"
"github.com/online-net/c14-cli/pkg/utils/configstore"
"github.com/scaleway/c14-cli/pkg/utils/configstore"
)

type cacheSafe struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/bucket.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"
"github.com/juju/errors"
"github.com/online-net/c14-cli/pkg/api"
"github.com/scaleway/c14-cli/pkg/api"
"os"
"strings"
"text/tabwriter"
Expand Down
6 changes: 3 additions & 3 deletions pkg/commands/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import (
"golang.org/x/oauth2"

"github.com/cocooma/mflag"
"github.com/online-net/c14-cli/pkg/api"
"github.com/online-net/c14-cli/pkg/api/auth"
"github.com/online-net/c14-cli/pkg/version"
"github.com/scaleway/c14-cli/pkg/api"
"github.com/scaleway/c14-cli/pkg/api/auth"
"github.com/scaleway/c14-cli/pkg/version"
)

// Config represents the informations on the usages
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/docker/docker/pkg/namesgenerator"
"github.com/juju/errors"
"github.com/online-net/c14-cli/pkg/api"
"github.com/scaleway/c14-cli/pkg/api"
)

type create struct {
Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/files.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (

"github.com/apex/log"
"github.com/dustin/go-humanize"
"github.com/online-net/c14-cli/pkg/api"
"github.com/online-net/c14-cli/pkg/utils/ssh"
"github.com/scaleway/c14-cli/pkg/api"
"github.com/scaleway/c14-cli/pkg/utils/ssh"
"github.com/pkg/sftp"
)

Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/freezze.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"gopkg.in/cheggaaa/pb.v1"

"github.com/apex/log"
"github.com/online-net/c14-cli/pkg/api"
"github.com/online-net/c14-cli/pkg/utils/pgbar"
"github.com/scaleway/c14-cli/pkg/api"
"github.com/scaleway/c14-cli/pkg/utils/pgbar"
)

type freeze struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/login.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"time"

"github.com/juju/errors"
"github.com/online-net/c14-cli/pkg/api/auth"
"github.com/scaleway/c14-cli/pkg/api/auth"
)

type login struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/ls.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"time"

"github.com/dustin/go-humanize"
"github.com/online-net/c14-cli/pkg/api"
"github.com/scaleway/c14-cli/pkg/api"
"github.com/pkg/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"sync"

"github.com/apex/log"
"github.com/online-net/c14-cli/pkg/api"
"github.com/scaleway/c14-cli/pkg/api"
)

type remove struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/rename.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package commands

import "github.com/online-net/c14-cli/pkg/api"
import "github.com/scaleway/c14-cli/pkg/api"

type rename struct {
Base
Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/unfreeze.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
pb "gopkg.in/cheggaaa/pb.v1"

"github.com/apex/log"
"github.com/online-net/c14-cli/pkg/api"
"github.com/online-net/c14-cli/pkg/utils/pgbar"
"github.com/scaleway/c14-cli/pkg/api"
"github.com/scaleway/c14-cli/pkg/utils/pgbar"
"github.com/pkg/errors"
)

Expand Down
4 changes: 2 additions & 2 deletions pkg/commands/upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import (
"github.com/docker/docker/pkg/streamformatter"
"github.com/dustin/go-humanize"
"github.com/kr/fs"
"github.com/online-net/c14-cli/pkg/api"
"github.com/online-net/c14-cli/pkg/utils/ssh"
"github.com/scaleway/c14-cli/pkg/api"
"github.com/scaleway/c14-cli/pkg/utils/ssh"
"github.com/pkg/errors"
"github.com/pkg/sftp"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"

"github.com/apex/log"
"github.com/online-net/c14-cli/pkg/api"
"github.com/scaleway/c14-cli/pkg/api"
)

type verify struct {
Expand Down

0 comments on commit a2e52a8

Please sign in to comment.