frostfs-node/cmd/neofs-node/config.go

12 lines
118 B
Go
Raw Normal View History

package main
type cfg struct {
grpcAddr string
}
func defaultCfg() *cfg {
return &cfg{
grpcAddr: ":50501",
}
}