8 lines
173 B
Go
8 lines
173 B
Go
package config
|
|
|
|
// GRPC defines the available grpc configuration.
|
|
type GRPC struct {
|
|
Addr string `yaml:"addr" env:"SETTINGS_GRPC_ADDR"`
|
|
Namespace string `yaml:"-"`
|
|
}
|