2022-01-20 15:34:53 +00:00
|
|
|
package acl
|
|
|
|
|
|
|
|
import (
|
2023-03-07 13:38:26 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/modules/acl/basic"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/modules/acl/extended"
|
2022-01-20 15:34:53 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
var Cmd = &cobra.Command{
|
|
|
|
Use: "acl",
|
|
|
|
Short: "Operations with Access Control Lists",
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
Cmd.AddCommand(extended.Cmd)
|
2022-11-11 07:32:17 +00:00
|
|
|
Cmd.AddCommand(basic.Cmd)
|
2022-01-20 15:34:53 +00:00
|
|
|
}
|