forked from TrueCloudLab/frostfs-node
12 lines
118 B
Go
12 lines
118 B
Go
|
package main
|
||
|
|
||
|
type cfg struct {
|
||
|
grpcAddr string
|
||
|
}
|
||
|
|
||
|
func defaultCfg() *cfg {
|
||
|
return &cfg{
|
||
|
grpcAddr: ":50501",
|
||
|
}
|
||
|
}
|