diff --git a/.travis.yml b/.travis.yml index 4342719..903a085 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ before_install: - sudo apt-get -y install docker-ce - go get github.com/axw/gocov/gocov - go get github.com/AlekSi/gocov-xml - - go get github.com/goadesign/goa/... + - go get github.com/keitaroinc/goa/... - go get github.com/Microkubes/microservice-tools/... - go get gopkg.in/h2non/gock.v1 - go get github.com/afex/hystrix-go/hystrix diff --git a/Dockerfile b/Dockerfile index b228b72..9d8cb69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM golang:1.10-alpine3.7 as build RUN apk --no-cache add git ca-certificates -RUN go get -u -v github.com/goadesign/goa/... && \ +RUN go get -u -v github.com/keitaroinc/goa/... && \ go get -u -v github.com/afex/hystrix-go/hystrix && \ go get -u -v github.com/Microkubes/microservice-tools/... && \ go get -u -v github.com/satori/go.uuid diff --git a/README.md b/README.md index eebf09c..9902094 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ export PATH=$GOPATH/bin:$PATH Install goa and goagen: ``` cd $GOPATH -go get -u github.com/goadesign/goa/... +go get -u github.com/keitaroinc/goa/... ``` ## Compile and run the service: diff --git a/app/contexts.go b/app/contexts.go index 0b21b62..062fb2b 100644 --- a/app/contexts.go +++ b/app/contexts.go @@ -12,7 +12,7 @@ package app import ( "context" - "github.com/goadesign/goa" + "github.com/keitaroinc/goa" "net/http" ) diff --git a/app/controllers.go b/app/controllers.go index b63f3ea..9bff932 100644 --- a/app/controllers.go +++ b/app/controllers.go @@ -12,8 +12,8 @@ package app import ( "context" - "github.com/goadesign/goa" - "github.com/goadesign/goa/cors" + "github.com/keitaroinc/goa" + "github.com/keitaroinc/goa/cors" "net/http" ) diff --git a/app/media_types.go b/app/media_types.go index f3c2d01..b3e4adc 100644 --- a/app/media_types.go +++ b/app/media_types.go @@ -11,7 +11,7 @@ package app import ( - "github.com/goadesign/goa" + "github.com/keitaroinc/goa" ) // users media type (default view) diff --git a/app/test/user_testing.go b/app/test/user_testing.go index ed48e36..f19911e 100644 --- a/app/test/user_testing.go +++ b/app/test/user_testing.go @@ -15,8 +15,8 @@ import ( "context" "fmt" "github.com/Microkubes/microservice-registration/app" - "github.com/goadesign/goa" - "github.com/goadesign/goa/goatest" + "github.com/keitaroinc/goa" + "github.com/keitaroinc/goa/goatest" "io" "log" "net/http" diff --git a/app/user_types.go b/app/user_types.go index 19c135a..46a84ca 100644 --- a/app/user_types.go +++ b/app/user_types.go @@ -11,7 +11,7 @@ package app import ( - "github.com/goadesign/goa" + "github.com/keitaroinc/goa" "unicode/utf8" ) diff --git a/client/client.go b/client/client.go index 4380a5b..917925e 100644 --- a/client/client.go +++ b/client/client.go @@ -11,8 +11,8 @@ package client import ( - "github.com/goadesign/goa" - goaclient "github.com/goadesign/goa/client" + "github.com/keitaroinc/goa" + goaclient "github.com/keitaroinc/goa/client" ) // Client is the user service client. diff --git a/client/media_types.go b/client/media_types.go index 30ef2f4..5a71944 100644 --- a/client/media_types.go +++ b/client/media_types.go @@ -11,7 +11,7 @@ package client import ( - "github.com/goadesign/goa" + "github.com/keitaroinc/goa" "net/http" ) diff --git a/client/user_types.go b/client/user_types.go index e8d333b..7881536 100644 --- a/client/user_types.go +++ b/client/user_types.go @@ -11,7 +11,7 @@ package client import ( - "github.com/goadesign/goa" + "github.com/keitaroinc/goa" "unicode/utf8" ) diff --git a/design/design.go b/design/design.go index d1e7314..72686fb 100644 --- a/design/design.go +++ b/design/design.go @@ -2,8 +2,8 @@ package design // Use . imports to enable the DSL import ( - . "github.com/goadesign/goa/design" - . "github.com/goadesign/goa/design/apidsl" + . "github.com/keitaroinc/goa/design" + . "github.com/keitaroinc/goa/design/apidsl" ) // Define default description and default global property values diff --git a/main.go b/main.go index fcfe178..545e227 100644 --- a/main.go +++ b/main.go @@ -12,8 +12,8 @@ import ( "github.com/Microkubes/microservice-tools/rabbitmq" "github.com/Microkubes/microservice-tools/utils/healthcheck" "github.com/Microkubes/microservice-tools/utils/version" - "github.com/goadesign/goa" - "github.com/goadesign/goa/middleware" + "github.com/keitaroinc/goa" + "github.com/keitaroinc/goa/middleware" ) func main() { diff --git a/swagger.go b/swagger.go index 7e657a1..0dec39f 100644 --- a/swagger.go +++ b/swagger.go @@ -1,7 +1,7 @@ package main import ( - "github.com/goadesign/goa" + "github.com/keitaroinc/goa" ) // SwaggerController implements the swagger resource. diff --git a/tool/cli/commands.go b/tool/cli/commands.go index 1305f32..54b06cd 100644 --- a/tool/cli/commands.go +++ b/tool/cli/commands.go @@ -15,9 +15,9 @@ import ( "encoding/json" "fmt" "github.com/Microkubes/microservice-registration/client" - "github.com/goadesign/goa" - goaclient "github.com/goadesign/goa/client" - uuid "github.com/goadesign/goa/uuid" + "github.com/keitaroinc/goa" + goaclient "github.com/keitaroinc/goa/client" + uuid "github.com/keitaroinc/goa/uuid" "github.com/spf13/cobra" "log" "os" diff --git a/tool/user-cli/main.go b/tool/user-cli/main.go index d72c791..c1458c6 100644 --- a/tool/user-cli/main.go +++ b/tool/user-cli/main.go @@ -4,7 +4,7 @@ import ( "fmt" "github.com/Microkubes/microservice-registration/client" "github.com/Microkubes/microservice-registration/tool/cli" - goaclient "github.com/goadesign/goa/client" + goaclient "github.com/keitaroinc/goa/client" "github.com/spf13/cobra" "net/http" "os" diff --git a/user.go b/user.go index 9af7c2f..61f799c 100644 --- a/user.go +++ b/user.go @@ -17,7 +17,7 @@ import ( "github.com/Microkubes/microservice-tools/rabbitmq" "github.com/afex/hystrix-go/hystrix" jwtgo "github.com/dgrijalva/jwt-go" - "github.com/goadesign/goa" + "github.com/keitaroinc/goa" uuid "github.com/satori/go.uuid" ) diff --git a/user_test.go b/user_test.go index 4307d6c..f517783 100644 --- a/user_test.go +++ b/user_test.go @@ -19,7 +19,7 @@ import ( "github.com/Microkubes/microservice-registration/app/test" "github.com/Microkubes/microservice-registration/config" "github.com/Microkubes/microservice-tools/rabbitmq" - "github.com/goadesign/goa" + "github.com/keitaroinc/goa" ) var configBytes = []byte(`