mirror of
https://github.com/owncloud/ocis
synced 2026-04-30 19:47:32 +02:00
8 lines
252 B
Go
8 lines
252 B
Go
package config
|
|
|
|
// Service 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:"5.1"`
|
|
Namespace string `yaml:"-"`
|
|
}
|