Files
mctl/cmd/command/command.go

18 lines
283 B
Go
Raw Permalink Normal View History

/*
Copyright © 2025 Jake jake.young.dev@gmail.com
*/
package command
import (
"github.com/spf13/cobra"
)
// CommandCmd is such a cool name lol
var CommandCmd = &cobra.Command{
Use: "command",
2025-11-26 13:13:00 -05:00
Aliases: []string{"c"},
Example: "mctl command <subcommand>",
}
func init() {}