api/go.mod
Peter Kurfer 1ef1f59402 Add gRPC API implementation
- add config struct for API
- add UUID to endpoint to be able to address them uniquely
- add manager to handle all gRPC services
2020-06-15 12:32:18 +02:00

29 lines
1 KiB
Modula-2

module github.com/baez90/inetmock
go 1.14
require (
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/golang/mock v1.4.3
github.com/golang/protobuf v1.4.0
github.com/google/uuid v1.1.1
github.com/mitchellh/mapstructure v1.2.2 // indirect
github.com/olekukonko/tablewriter v0.0.4
github.com/pelletier/go-toml v1.7.0 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v1.0.0
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.6.3
go.uber.org/zap v1.15.0
golang.org/x/net v0.0.0-20200425230154-ff2c4b7c35a0 // indirect
golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f // indirect
golang.org/x/text v0.3.2 // indirect
golang.org/x/tools v0.0.0-20191216052735-49a3e744a425 // indirect
google.golang.org/genproto v0.0.0-20200424135956-bca184e23272 // indirect
google.golang.org/grpc v1.29.1
google.golang.org/protobuf v1.21.0
gopkg.in/ini.v1 v1.55.0 // indirect
gopkg.in/yaml.v2 v2.2.8
)