1 package banner 2 3 import ( 4 "edge-infra.dev/pkg/edge/edgecli" 5 "edge-infra.dev/pkg/edge/edgecli/commands/banner/securitycompliance" 6 "edge-infra.dev/pkg/lib/cli/command" 7 ) 8 9 func NewCmd(cfg *edgecli.Config) *command.Command { 10 return &command.Command{ 11 ShortUsage: "edge banner", 12 ShortHelp: "Commands to administrate banners", 13 14 Commands: []*command.Command{ 15 securitycompliance.NewCmd(cfg), 16 }, 17 } 18 } 19