forked from TrueCloudLab/frostfs-node
[#666] cmd/neofs-adm: Initial app structure with config init
command
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
24d1725cc8
commit
d189d60925
5 changed files with 269 additions and 0 deletions
13
cmd/neofs-adm/main.go
Normal file
13
cmd/neofs-adm/main.go
Normal 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)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue