func createMainCmd()

in sg/cmd/sg/main.go [19:31]


func createMainCmd() *cobra.Command {
	rv := &cobra.Command{
		Use:               "sg",
		Short:             "Enables best security practices for your project from day zero.",
		CompletionOptions: cobra.CompletionOptions{DisableDefaultCmd: true},
	}

	rv.AddCommand(
		test.CreateCLI(),
	)

	return rv
}