Files
opencloud/services/settings/pkg/config/grpc.go
2022-06-28 13:03:19 +02:00

8 lines
218 B
Go

package config
// GRPC defines the available grpc configuration.
type GRPC struct {
Addr string `yaml:"addr" env:"SETTINGS_GRPC_ADDR" desc:"The bind address of the GRPC service."`
Namespace string `yaml:"-"`
}