7 lines
121 B
Go
7 lines
121 B
Go
package config
|
|
|
|
type GrpcServer struct {
|
|
ListenAddrs []string `yaml:"listenAddrs"`
|
|
TLS bool `yaml:"tls"`
|
|
}
|