Skip to content

Commit 3b262c4

Browse files
author
Pavle Jonoski
authored
Merge pull request #19 from nushkovg/goa-from-keitaroinc-fix
Changed all goadesign occurencies with keitaroinc
2 parents a21f80d + dadaceb commit 3b262c4

File tree

14 files changed

+24
-24
lines changed

14 files changed

+24
-24
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ before_install:
2121
- go get -u gopkg.in/h2non/gock.v1
2222
- go get -u github.com/Microkubes/microservice-tools
2323
- go get -u github.com/Microkubes/microservice-security/...
24-
- go get -u github.com/goadesign/goa/...
24+
- go get -u github.com/keitaroinc/goa/...
2525
- go get -u gopkg.in/mgo.v2
2626
- go get -u github.com/afex/hystrix-go/hystrix
2727
- go get -u github.com/satori/go.uuid

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM golang:1.10-alpine3.7 as build
33

44
RUN apk --no-cache add git curl openssh
55

6-
RUN go get -u -v github.com/goadesign/goa/... && \
6+
RUN go get -u -v github.com/keitaroinc/goa/... && \
77
go get -u -v github.com/afex/hystrix-go/hystrix && \
88
go get -u -v github.com/Microkubes/microservice-security/... && \
99
go get -u -v github.com/Microkubes/microservice-tools/...

app/contexts.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/controllers.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/test/jwt_testing.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/client.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/media_types.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

design/design.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package design
22

33
import (
4-
. "github.com/goadesign/goa/design"
5-
. "github.com/goadesign/goa/design/apidsl"
4+
. "github.com/keitaroinc/goa/design"
5+
. "github.com/keitaroinc/goa/design/apidsl"
66
)
77

88
var _ = API("jwt-signin", func() {
@@ -12,7 +12,7 @@ var _ = API("jwt-signin", func() {
1212
Scheme("http")
1313
Host("localhost:8080")
1414
Consumes("application/x-www-form-urlencoded", func() {
15-
Package("github.com/goadesign/goa/encoding/form")
15+
Package("github.com/keitaroinc/goa/encoding/form")
1616
})
1717
})
1818

jwt.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"github.com/Microkubes/jwt-issuer/app"
5-
"github.com/goadesign/goa"
5+
"github.com/keitaroinc/goa"
66
)
77

88
// JWTController implements the jwt resource.

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"github.com/Microkubes/microservice-tools/gateway"
1414
"github.com/Microkubes/microservice-tools/utils/healthcheck"
1515
"github.com/Microkubes/microservice-tools/utils/version"
16-
"github.com/goadesign/goa"
17-
"github.com/goadesign/goa/middleware"
16+
"github.com/keitaroinc/goa"
17+
"github.com/keitaroinc/goa/middleware"
1818
)
1919

2020
func main() {

0 commit comments

Comments
 (0)