-
- Downloads
#19 goa generated code
Showing
- gen/cache/client.go 13 additions, 5 deletionsgen/cache/client.go
- gen/cache/endpoints.go 16 additions, 4 deletionsgen/cache/endpoints.go
- gen/cache/service.go 3 additions, 1 deletiongen/cache/service.go
- gen/http/cache/client/cli.go 38 additions, 0 deletionsgen/http/cache/client/cli.go
- gen/http/cache/client/client.go 29 additions, 0 deletionsgen/http/cache/client/client.go
- gen/http/cache/client/encode_decode.go 70 additions, 0 deletionsgen/http/cache/client/encode_decode.go
- gen/http/cache/client/paths.go 5 additions, 0 deletionsgen/http/cache/client/paths.go
- gen/http/cache/server/encode_decode.go 51 additions, 0 deletionsgen/http/cache/server/encode_decode.go
- gen/http/cache/server/paths.go 5 additions, 0 deletionsgen/http/cache/server/paths.go
- gen/http/cache/server/server.go 61 additions, 5 deletionsgen/http/cache/server/server.go
- gen/http/cache/server/types.go 14 additions, 0 deletionsgen/http/cache/server/types.go
- gen/http/cli/cache/cli.go 29 additions, 1 deletiongen/http/cli/cache/cli.go
- gen/http/openapi.json 1 addition, 1 deletiongen/http/openapi.json
- gen/http/openapi.yaml 35 additions, 0 deletionsgen/http/openapi.yaml
- gen/http/openapi3.json 1 addition, 1 deletiongen/http/openapi3.json
- gen/http/openapi3.yaml 53 additions, 4 deletionsgen/http/openapi3.yaml
- go.mod 16 additions, 3 deletionsgo.mod
- go.sum 42 additions, 0 deletionsgo.sum
... | ... | @@ -4,6 +4,8 @@ go 1.17 |
require ( | ||
code.vereign.com/gaiax/tsa/golib v0.0.0-20220321093827-5fdf8f34aad9 | ||
github.com/cloudevents/sdk-go/protocol/nats/v2 v2.10.1 | ||
github.com/cloudevents/sdk-go/v2 v2.10.1 | ||
github.com/go-redis/redis/v8 v8.11.5 | ||
github.com/kelseyhightower/envconfig v1.4.0 | ||
github.com/stretchr/testify v1.7.0 | ||
... | ... | @@ -18,17 +20,22 @@ require ( |
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect | ||
github.com/dimfeld/httppath v0.0.0-20170720192232-ee938bf73598 // indirect | ||
github.com/dimfeld/httptreemux/v5 v5.4.0 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20220221023154-0b2280d3ff96 // indirect | ||
github.com/google/go-cmp v0.5.6 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/json-iterator/go v1.1.11 // indirect | ||
github.com/jtolds/gls v4.20.0+incompatible // indirect | ||
github.com/manveru/faker v0.0.0-20171103152722-9fbc68a78c4d // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/nats-io/nats.go v1.11.1-0.20210623165838-4b75fc59ae30 // indirect | ||
github.com/nats-io/nkeys v0.3.0 // indirect | ||
github.com/nats-io/nuid v1.0.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/zach-klippenstein/goregen v0.0.0-20160303162051-795b5e3961ea // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/multierr v1.6.0 // indirect | ||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect | ||
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect | ||
golang.org/x/sys v0.0.0-20220317061510-51cd9980dadf // indirect | ||
golang.org/x/tools v0.1.10 // indirect | ||
... | ... | @@ -36,3 +43,9 @@ require ( |
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) | ||
require ( | ||
github.com/google/uuid v1.3.0 | ||
github.com/gopherjs/gopherjs v0.0.0-20220221023154-0b2280d3ff96 // indirect | ||
github.com/smartystreets/assertions v1.2.1 // indirect | ||
) |
Please register or sign in to comment