d189d60925
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
13 lines
174 B
Go
13 lines
174 B
Go
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)
|
|
}
|
|
}
|