[#11] Build simple neofs-node application

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-08-21 18:01:59 +03:00 committed by Alex Vanin
parent a87fdab324
commit 265c26150d
5 changed files with 144 additions and 3 deletions

11
cmd/neofs-node/config.go Normal file
View file

@ -0,0 +1,11 @@
package main
type cfg struct {
grpcAddr string
}
func defaultCfg() *cfg {
return &cfg{
grpcAddr: ":50501",
}
}