mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-03-18 15:37:07 -04:00
8 lines
191 B
Go
8 lines
191 B
Go
package config
|
|
|
|
// GRPC defines the available grpc configuration.
|
|
type GRPC struct {
|
|
Addr string `ocisConfig:"addr" env:"STORE_GRPC_ADDR"`
|
|
Namespace string `ocisConfig:"-" yaml:"-"`
|
|
}
|