forked from TrueCloudLab/frostfs-node
[#11] Build simple neofs-node application
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
a87fdab324
commit
265c26150d
5 changed files with 144 additions and 3 deletions
11
cmd/neofs-node/config.go
Normal file
11
cmd/neofs-node/config.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
package main
|
||||
|
||||
type cfg struct {
|
||||
grpcAddr string
|
||||
}
|
||||
|
||||
func defaultCfg() *cfg {
|
||||
return &cfg{
|
||||
grpcAddr: ":50501",
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue