mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-04 18:14:53 -05:00
8 lines
237 B
Go
8 lines
237 B
Go
package config
|
|
|
|
// GRPC defines the available grpc configuration.
|
|
type GRPC struct {
|
|
Addr string `ocisConfig:"addr" env:"SEARCH_GRPC_ADDR" desc:"The bind address of the GRPC service."`
|
|
Namespace string `ocisConfig:"-" yaml:"-"`
|
|
}
|