Merge branch '12-retrieve-task-result' into 'main'
HTTP endpoint to retreive task results Closes #12 See merge request !7
No related branches found
No related tags found
Showing
- cmd/task/main.go 1 addition, 1 deletioncmd/task/main.go
- design/design.go 10 additions, 0 deletionsdesign/design.go
- design/types.go 5 additions, 0 deletionsdesign/types.go
- gen/http/cli/task/cli.go 25 additions, 3 deletionsgen/http/cli/task/cli.go
- gen/http/openapi.json 1 addition, 1 deletiongen/http/openapi.json
- gen/http/openapi.yaml 23 additions, 2 deletionsgen/http/openapi.yaml
- gen/http/openapi3.json 1 addition, 1 deletiongen/http/openapi3.json
- gen/http/openapi3.yaml 34 additions, 7 deletionsgen/http/openapi3.yaml
- gen/http/task/client/cli.go 14 additions, 1 deletiongen/http/task/client/cli.go
- gen/http/task/client/client.go 24 additions, 0 deletionsgen/http/task/client/client.go
- gen/http/task/client/encode_decode.go 60 additions, 0 deletionsgen/http/task/client/encode_decode.go
- gen/http/task/client/paths.go 5 additions, 0 deletionsgen/http/task/client/paths.go
- gen/http/task/server/encode_decode.go 28 additions, 0 deletionsgen/http/task/server/encode_decode.go
- gen/http/task/server/paths.go 5 additions, 0 deletionsgen/http/task/server/paths.go
- gen/http/task/server/server.go 59 additions, 3 deletionsgen/http/task/server/server.go
- gen/http/task/server/types.go 8 additions, 0 deletionsgen/http/task/server/types.go
- gen/task/client.go 15 additions, 3 deletionsgen/task/client.go
- gen/task/endpoints.go 14 additions, 2 deletionsgen/task/endpoints.go
- gen/task/service.go 9 additions, 1 deletiongen/task/service.go
- go.mod 4 additions, 0 deletionsgo.mod
... | ... | @@ -7,6 +7,7 @@ require ( |
github.com/cenkalti/backoff/v4 v4.1.3 | ||
github.com/google/uuid v1.3.0 | ||
github.com/kelseyhightower/envconfig v1.4.0 | ||
github.com/stretchr/testify v1.7.0 | ||
go.mongodb.org/mongo-driver v1.8.4 | ||
go.uber.org/zap v1.21.0 | ||
goa.design/goa/v3 v3.7.0 | ||
... | ... | @@ -14,6 +15,7 @@ require ( |
) | ||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dimfeld/httppath v0.0.0-20170720192232-ee938bf73598 // indirect | ||
github.com/dimfeld/httptreemux/v5 v5.4.0 // indirect | ||
github.com/go-stack/stack v1.8.0 // indirect | ||
... | ... | @@ -25,6 +27,7 @@ require ( |
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/manveru/faker v0.0.0-20171103152722-9fbc68a78c4d // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/sergi/go-diff v1.2.0 // indirect | ||
github.com/smartystreets/assertions v1.2.1 // indirect | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
... | ... | @@ -41,4 +44,5 @@ require ( |
golang.org/x/tools v0.1.10 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
Please register or sign in to comment