Skip to content

Commit

Permalink
Changed all goadesign occurencies with keitaroinc
Browse files Browse the repository at this point in the history
  • Loading branch information
nushkovg committed May 18, 2019
1 parent 08d6b95 commit 61f0c1a
Show file tree
Hide file tree
Showing 18 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion app/contexts.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/controllers.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/media_types.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/test/user_testing.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/user_types.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions client/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/media_types.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/user_types.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions design/design.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion swagger.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/goadesign/goa"
"github.com/keitaroinc/goa"
)

// SwaggerController implements the swagger resource.
Expand Down
6 changes: 3 additions & 3 deletions tool/cli/commands.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tool/user-cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion user.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion user_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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(`
Expand Down

0 comments on commit 61f0c1a

Please sign in to comment.