Skip to content

Commit 6166cc6

Browse files
committed
Merge pull request #6 from arschles/fix-import
fix(deis.go): remove client prefix from import path
2 parents 3d5345b + 311945a commit 6166cc6

58 files changed

Lines changed: 106 additions & 106 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export GO15VENDOREXPERIMENT=1
22

33
# the filepath to this repository, relative to $GOPATH/src
4-
repo_path = github.com/deis/workflow-cli/client
4+
repo_path = github.com/deis/workflow-cli
55

66
HOST_OS := $(shell uname)
77
ifeq ($(HOST_OS),Darwin)

cmd/apps.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ import (
88

99
"github.com/deis/pkg/prettyprint"
1010

11-
"github.com/deis/workflow-cli/client/controller/api"
12-
"github.com/deis/workflow-cli/client/controller/client"
13-
"github.com/deis/workflow-cli/client/controller/models/apps"
14-
"github.com/deis/workflow-cli/client/controller/models/config"
15-
"github.com/deis/workflow-cli/client/pkg/git"
16-
"github.com/deis/workflow-cli/client/pkg/webbrowser"
11+
"github.com/deis/workflow-cli/controller/api"
12+
"github.com/deis/workflow-cli/controller/client"
13+
"github.com/deis/workflow-cli/controller/models/apps"
14+
"github.com/deis/workflow-cli/controller/models/config"
15+
"github.com/deis/workflow-cli/pkg/git"
16+
"github.com/deis/workflow-cli/pkg/webbrowser"
1717
)
1818

1919
// AppCreate creates an app.

cmd/auth.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"strings"
1010
"syscall"
1111

12-
"github.com/deis/workflow-cli/client/controller/client"
13-
"github.com/deis/workflow-cli/client/controller/models/auth"
12+
"github.com/deis/workflow-cli/controller/client"
13+
"github.com/deis/workflow-cli/controller/models/auth"
1414
"golang.org/x/crypto/ssh/terminal"
1515
)
1616

cmd/builds.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"gopkg.in/yaml.v2"
99

10-
"github.com/deis/workflow-cli/client/controller/models/builds"
10+
"github.com/deis/workflow-cli/controller/models/builds"
1111
)
1212

1313
// BuildsList lists an app's builds.

cmd/certs.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99

1010
"github.com/olekukonko/tablewriter"
1111

12-
"github.com/deis/workflow-cli/client/controller/client"
13-
"github.com/deis/workflow-cli/client/controller/models/certs"
12+
"github.com/deis/workflow-cli/controller/client"
13+
"github.com/deis/workflow-cli/controller/models/certs"
1414
)
1515

1616
// CertsList lists certs registered with the controller.

cmd/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212

1313
"github.com/deis/pkg/prettyprint"
1414

15-
"github.com/deis/workflow-cli/client/controller/api"
16-
"github.com/deis/workflow-cli/client/controller/models/config"
15+
"github.com/deis/workflow-cli/controller/api"
16+
"github.com/deis/workflow-cli/controller/models/config"
1717
)
1818

1919
// ConfigList lists an app's config.

cmd/domains.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import (
44
"fmt"
55

6-
"github.com/deis/workflow-cli/client/controller/models/domains"
6+
"github.com/deis/workflow-cli/controller/models/domains"
77
)
88

99
// DomainsList lists domains registered with an app.

cmd/git.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package cmd
22

33
import (
4-
"github.com/deis/workflow-cli/client/pkg/git"
4+
"github.com/deis/workflow-cli/pkg/git"
55
)
66

77
// GitRemote creates a git remote for a deis app.

cmd/keys.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"strconv"
99
"strings"
1010

11-
"github.com/deis/workflow-cli/client/controller/api"
12-
"github.com/deis/workflow-cli/client/controller/client"
13-
"github.com/deis/workflow-cli/client/controller/models/keys"
11+
"github.com/deis/workflow-cli/controller/api"
12+
"github.com/deis/workflow-cli/controller/client"
13+
"github.com/deis/workflow-cli/controller/models/keys"
1414
)
1515

1616
// KeysList lists a user's keys.

cmd/keys_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"reflect"
88
"testing"
99

10-
"github.com/deis/workflow-cli/client/controller/api"
10+
"github.com/deis/workflow-cli/controller/api"
1111
)
1212

1313
func TestGetKey(t *testing.T) {

0 commit comments

Comments
 (0)