migrate GitHub repository names
diff --git a/README.md b/README.md index c7c1436..e2d3714 100644 --- a/README.md +++ b/README.md
@@ -1,5 +1,5 @@ # apidVerifyAPIKey -This core plugin for [apid](http://github.com/30x/apid) responds to [apidApigeeSync](https://github.com/30x/apidApigeeSync) +This core plugin for [apid](http://github.com/apid/apid) responds to [apidApigeeSync](https://github.com/apid/apidApigeeSync) events and publishes an API that allows clients to verify an API key against Apigee.
diff --git a/api_performValidations_test.go b/api_performValidations_test.go index cb97eb0..afcb225 100644 --- a/api_performValidations_test.go +++ b/api_performValidations_test.go
@@ -16,8 +16,8 @@ import ( "encoding/json" - "github.com/30x/apid-core" - "github.com/30x/apid-core/factory" + "github.com/apid/apid-core" + "github.com/apid/apid-core/factory" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" )
diff --git a/api_test.go b/api_test.go index 10b5eca..50c6bbc 100644 --- a/api_test.go +++ b/api_test.go
@@ -23,8 +23,8 @@ import ( "encoding/json" "errors" - "github.com/30x/apid-core" - "github.com/30x/apid-core/factory" + "github.com/apid/apid-core" + "github.com/apid/apid-core/factory" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "io/ioutil"
diff --git a/data.go b/data.go index 446c87a..e2d974e 100644 --- a/data.go +++ b/data.go
@@ -16,7 +16,7 @@ import ( "database/sql" "errors" - "github.com/30x/apid-core" + "github.com/apid/apid-core" "strings" "sync" )
diff --git a/data_helper_test.go b/data_helper_test.go index f40c72f..c5fa0e4 100644 --- a/data_helper_test.go +++ b/data_helper_test.go
@@ -15,7 +15,7 @@ package apidVerifyApiKey import ( - "github.com/30x/apid-core" + "github.com/apid/apid-core" . "github.com/onsi/gomega" )
diff --git a/data_test.go b/data_test.go index 6766e89..2a6bdb6 100644 --- a/data_test.go +++ b/data_test.go
@@ -14,8 +14,8 @@ package apidVerifyApiKey import ( - "github.com/30x/apid-core" - "github.com/30x/apid-core/factory" + "github.com/apid/apid-core" + "github.com/apid/apid-core/factory" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" "io/ioutil"
diff --git a/glide.yaml b/glide.yaml index d02f4a6..7f8edff 100644 --- a/glide.yaml +++ b/glide.yaml
@@ -12,11 +12,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -package: github.com/30x/apidVerifyAPIKey +package: github.com/apid/apidVerifyAPIKey import: -- package: github.com/30x/apid-core +- package: github.com/apid/apid-core version: master -- package: github.com/30x/apidApigeeSync +- package: github.com/apid/apidApigeeSync version: master testImport: - package: github.com/onsi/ginkgo/ginkgo
diff --git a/init.go b/init.go index 3b6d4bb..b439c10 100644 --- a/init.go +++ b/init.go
@@ -17,7 +17,7 @@ import ( "sync" - "github.com/30x/apid-core" + "github.com/apid/apid-core" ) const (
diff --git a/listener.go b/listener.go index 2d2077e..db136f6 100644 --- a/listener.go +++ b/listener.go
@@ -15,7 +15,7 @@ package apidVerifyApiKey import ( - "github.com/30x/apid-core" + "github.com/apid/apid-core" "github.com/apigee-labs/transicator/common" )
diff --git a/listener_test.go b/listener_test.go index 7095e23..7ba8379 100644 --- a/listener_test.go +++ b/listener_test.go
@@ -15,8 +15,8 @@ package apidVerifyApiKey import ( - "github.com/30x/apid-core" - "github.com/30x/apid-core/factory" + "github.com/apid/apid-core" + "github.com/apid/apid-core/factory" "github.com/apigee-labs/transicator/common" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega"
diff --git a/pluginData.go b/pluginData.go index a48b83c..cdd518a 100644 --- a/pluginData.go +++ b/pluginData.go
@@ -14,7 +14,7 @@ package apidVerifyApiKey -import "github.com/30x/apid-core" +import "github.com/apid/apid-core" var pluginData = apid.PluginData{ Name: "apidVerifyAPIKey",
diff --git a/verifyAPIKey_suite_test.go b/verifyAPIKey_suite_test.go index fdf728b..fdb5ed2 100644 --- a/verifyAPIKey_suite_test.go +++ b/verifyAPIKey_suite_test.go
@@ -18,7 +18,7 @@ . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" - "github.com/30x/apid-core" + "github.com/apid/apid-core" "os" "testing" )