Skip to content

Commit

Permalink
Merge pull request #40 from nushkovg/goa-from-keitaroinc-fix
Browse files Browse the repository at this point in the history
Changed all goadesign occurencies with keitaroinc
  • Loading branch information
Pavle Jonoski authored May 18, 2019
2 parents 351b746 + 62bdd20 commit b538550
Show file tree
Hide file tree
Showing 19 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
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 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/...
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
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 @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion store/mock.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"sync"

"github.com/Microkubes/backends"
"github.com/goadesign/goa"
"github.com/keitaroinc/goa"
"github.com/satori/go.uuid"
)

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 @@ -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"
)

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

0 comments on commit b538550

Please sign in to comment.