Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> Update services/gateway/README.md Co-authored-by: Martin <github@diemattels.at> fix env tag Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
10 lines
421 B
Go
10 lines
421 B
Go
package config
|
|
|
|
// GRPC defines the available grpc configuration.
|
|
type GRPC struct {
|
|
Addr string `yaml:"addr" env:"COLLABORATION_GRPC_ADDR" desc:"The bind address of the GRPC service." introductionVersion:"6.0.0"`
|
|
Protocol string `yaml:"protocol" env:"OCIS_GRPC_PROTOCOL;COLLABORATION_GRPC_PROTOCOL" desc:"The transport protocol of the GRPC service." introductionVersion:"%%NEXT%%"`
|
|
|
|
Namespace string `yaml:"-"`
|
|
}
|