2022-01-20 18:34:53 +03:00
|
|
|
package acl
|
|
|
|
|
|
|
|
import (
|
2023-03-07 16:38:26 +03: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 18:34:53 +03: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 10:32:17 +03:00
|
|
|
Cmd.AddCommand(basic.Cmd)
|
2022-01-20 18:34:53 +03:00
|
|
|
}
|