2025-06-17 23:12:49 -04:00
|
|
|
/*
|
|
|
|
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",
|
|
|
|
Example: "mctl command <subcommand>",
|
|
|
|
}
|
|
|
|
|
2025-06-18 18:38:01 -04:00
|
|
|
func init() {}
|