From 62bdd2053e18b63f3a80a91866a05f74a6998075 Mon Sep 17 00:00:00 2001 From: Goran Nushkov Date: Sat, 18 May 2019 02:37:53 +0200 Subject: [PATCH] Changed all goadesign occurencies with keitaroinc --- .travis.yml | 2 +- Dockerfile | 2 +- README.md | 2 +- app/contexts.go | 2 +- app/controllers.go | 4 ++-- app/media_types.go | 2 +- app/test/user_testing.go | 4 ++-- app/user_types.go | 2 +- client/client.go | 4 ++-- client/media_types.go | 2 +- client/user_types.go | 2 +- design/design.go | 4 ++-- main.go | 4 ++-- store/mock.go | 2 +- swagger.go | 2 +- tool/cli/commands.go | 6 +++--- tool/user-cli/main.go | 2 +- user.go | 2 +- user_test.go | 2 +- 19 files changed, 26 insertions(+), 26 deletions(-) diff --git a/.travis.yml b/.travis.yml index e71cdd4..e9026a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ before_install: - go get -u github.com/Microkubes/microservice-tools/... - go get -u github.com/Microkubes/microservice-security/... - go get -u github.com/Microkubes/backends/... - - go get github.com/goadesign/goa/... + - go get github.com/keitaroinc/goa/... - go get gopkg.in/mgo.v2 before_script: diff --git a/Dockerfile b/Dockerfile index 090c3ef..39e2c6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM golang:1.10-alpine3.7 as build RUN apk --no-cache add git curl openssh -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-security/... && \ go get -u -v github.com/Microkubes/microservice-tools/... diff --git a/README.md b/README.md index 5dab211..d5f590f 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,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 58f3ef9..c9bd220 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" "strconv" ) diff --git a/app/controllers.go b/app/controllers.go index d70d01a..6018c78 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 1035019..bd8972b 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 5f02ffe..c2cb378 100644 --- a/app/test/user_testing.go +++ b/app/test/user_testing.go @@ -15,8 +15,8 @@ import ( "context" "fmt" "github.com/Microkubes/microservice-user/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 a66f7c8..b72cd5b 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 23dc298..013b438 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 3ee8992..7cf3125 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 03ae514..844bdd8 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 72ccbbc..dff8580 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 ebbb2dd..dfec26c 100644 --- a/main.go +++ b/main.go @@ -18,8 +18,8 @@ import ( "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/store/mock.go b/store/mock.go index 8e0c05b..85c320b 100644 --- a/store/mock.go +++ b/store/mock.go @@ -4,7 +4,7 @@ import ( "sync" "github.com/Microkubes/backends" - "github.com/goadesign/goa" + "github.com/keitaroinc/goa" "github.com/satori/go.uuid" ) 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 3d14104..5c1e1fd 100644 --- a/tool/cli/commands.go +++ b/tool/cli/commands.go @@ -15,9 +15,9 @@ import ( "encoding/json" "fmt" "github.com/Microkubes/microservice-user/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" "net/url" diff --git a/tool/user-cli/main.go b/tool/user-cli/main.go index 51e3012..c53cea3 100644 --- a/tool/user-cli/main.go +++ b/tool/user-cli/main.go @@ -8,7 +8,7 @@ import ( "github.com/Microkubes/microservice-user/client" "github.com/Microkubes/microservice-user/tool/cli" - goaclient "github.com/goadesign/goa/client" + goaclient "github.com/keitaroinc/goa/client" "github.com/spf13/cobra" ) diff --git a/user.go b/user.go index 7c4eb8f..a97c8e7 100644 --- a/user.go +++ b/user.go @@ -13,7 +13,7 @@ import ( "github.com/Microkubes/microservice-tools/rabbitmq" "github.com/Microkubes/microservice-user/app" "github.com/Microkubes/microservice-user/store" - "github.com/goadesign/goa" + "github.com/keitaroinc/goa" "golang.org/x/crypto/bcrypt" ) diff --git a/user_test.go b/user_test.go index 2bab042..dd81b62 100644 --- a/user_test.go +++ b/user_test.go @@ -10,7 +10,7 @@ import ( "github.com/Microkubes/microservice-user/app" "github.com/Microkubes/microservice-user/app/test" "github.com/Microkubes/microservice-user/store" - "github.com/goadesign/goa" + "github.com/keitaroinc/goa" ) var db = store.NewDB()