Files
phylum/server/internal/command/appcmd/admincmd/admin.go
T
Abhishek Shroff c610dd6251 Get rid of silos
2024-08-05 23:33:43 +05:30

20 lines
301 B
Go

package admincmd
import (
"github.com/spf13/cobra"
)
func SetupCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "admin",
Short: "Server Administration",
}
cmd.AddCommand([]*cobra.Command{
setupStorageCommand(),
setupUserCommand(),
setupResourceCommand(),
}...)
return cmd
}