mctl/cmd/command/command.go
jake c15c16be8d finishing sqlite changes
- finished default/active server logic
- dev done
- needs testing
2025-06-18 18:38:01 -04:00

17 lines
258 B
Go

/*
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>",
}
func init() {}