forked from TrueCloudLab/frostfs-node
16 lines
259 B
Go
16 lines
259 B
Go
|
package acl
|
||
|
|
||
|
import (
|
||
|
"github.com/nspcc-dev/neofs-node/cmd/neofs-cli/modules/acl/extended"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var Cmd = &cobra.Command{
|
||
|
Use: "acl",
|
||
|
Short: "Operations with Access Control Lists",
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
Cmd.AddCommand(extended.Cmd)
|
||
|
}
|