Skip to content

Commit

Permalink
Change imports to refer to guac repo
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamon committed Aug 23, 2017
1 parent bfb0ae5 commit 8e32c10
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion info/health.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package info

import (
"net/http"
"github.com/jhamon/uaalib/utils"
"github.com/jhamon/guac/utils"
)

type UaaHealthStatus string
Expand Down
2 changes: 1 addition & 1 deletion info/health_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package info_test

import (
"github.com/jhamon/uaalib/info"
"github.com/jhamon/guac/info"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/onsi/gomega/ghttp"
Expand Down
2 changes: 1 addition & 1 deletion info/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package info

import (
"net/http"
"github.com/jhamon/uaalib/utils"
"github.com/jhamon/guac/utils"

"io/ioutil"
"encoding/json"
Expand Down
2 changes: 1 addition & 1 deletion info/info_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/onsi/gomega/ghttp"
. "github.com/jhamon/uaalib/info"
. "github.com/jhamon/guac/info"
)

var _ = Describe("Info", func() {
Expand Down
2 changes: 1 addition & 1 deletion info/me.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package info
import (
"io/ioutil"
"net/http"
"github.com/jhamon/uaalib/utils"
"github.com/jhamon/guac/utils"
"encoding/json"
)

Expand Down
2 changes: 1 addition & 1 deletion info/me_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package info_test

import (
. "github.com/jhamon/uaalib/info"
. "github.com/jhamon/guac/info"

. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
Expand Down
2 changes: 1 addition & 1 deletion info/token_key.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
)
import (
"net/http"
"github.com/jhamon/uaalib/utils"
"github.com/jhamon/guac/utils"
"io/ioutil"
"encoding/json"
)
Expand Down
2 changes: 1 addition & 1 deletion info/token_key_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package info_test

import (
. "github.com/jhamon/uaalib/info"
. "github.com/jhamon/guac/info"

. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
Expand Down
2 changes: 1 addition & 1 deletion info/token_keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package info
import (
"io/ioutil"
"net/http"
"github.com/jhamon/uaalib/utils"
"github.com/jhamon/guac/utils"
"encoding/json"
)

Expand Down
2 changes: 1 addition & 1 deletion info/token_keys_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package info_test

import (
. "github.com/jhamon/uaalib/info"
. "github.com/jhamon/guac/info"

. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
Expand Down

0 comments on commit 8e32c10

Please sign in to comment.