forked from TrueCloudLab/frostfs-node
265c26150d
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
11 lines
118 B
Go
11 lines
118 B
Go
package main
|
|
|
|
type cfg struct {
|
|
grpcAddr string
|
|
}
|
|
|
|
func defaultCfg() *cfg {
|
|
return &cfg{
|
|
grpcAddr: ":50501",
|
|
}
|
|
}
|