mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 08:25:03 +00:00
Convert the existing swagger2.0 file to a moden OpenAPI file. Add missing endpoitns and model definitions. Signed-off-by: Lucas Roesler <roesler.lucas@gmail.com>
36 lines
1.3 KiB
Modula-2
36 lines
1.3 KiB
Modula-2
module github.com/openfaas/faas/gateway
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/docker/distribution v2.8.1+incompatible
|
|
github.com/go-ozzo/ozzo-validation/v4 v4.3.0
|
|
github.com/gorilla/mux v1.8.0
|
|
github.com/openfaas/faas-provider v0.19.1
|
|
github.com/openfaas/nats-queue-worker v0.0.0-20230117214128-3615ccb286cc
|
|
github.com/prometheus/client_golang v1.13.0
|
|
github.com/prometheus/client_model v0.2.0
|
|
go.uber.org/goleak v1.1.12
|
|
golang.org/x/sync v0.1.0
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/nats-io/nats-server/v2 v2.9.11 // indirect
|
|
github.com/nats-io/nats-streaming-server v0.25.3 // indirect
|
|
github.com/nats-io/nats.go v1.22.1 // indirect
|
|
github.com/nats-io/nkeys v0.3.0 // indirect
|
|
github.com/nats-io/nuid v1.0.1 // indirect
|
|
github.com/nats-io/stan.go v0.10.4 // indirect
|
|
github.com/prometheus/common v0.37.0 // indirect
|
|
github.com/prometheus/procfs v0.8.0 // indirect
|
|
github.com/stretchr/testify v1.7.1 // indirect
|
|
golang.org/x/crypto v0.5.0 // indirect
|
|
golang.org/x/sys v0.4.1-0.20230105183443-b8be2fde2a9e // indirect
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
)
|