[#666] cmd/neofs-adm: Initial app structure with config init command

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2021-07-06 14:27:54 +03:00 committed by Alex Vanin
parent 24d1725cc8
commit d189d60925
5 changed files with 269 additions and 0 deletions

13
cmd/neofs-adm/main.go Normal file
View file

@ -0,0 +1,13 @@
package main
import (
"os"
"github.com/nspcc-dev/neofs-node/cmd/neofs-adm/internal/modules"
)
func main() {
if err := modules.Execute(); err != nil {
os.Exit(1)
}
}