- added 'command' subcommand - removed viper - setup commands added - still a WIP - readme TODO update
23 lines
496 B
Go
23 lines
496 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>",
|
|
// Short: "A remote console client",
|
|
// Long: `mctl is a terminal-friendly remote console client made to manage game servers.`,
|
|
// Version: "v0.3.4",
|
|
// Run: func(cmd *cobra.Command, args []string) { },
|
|
}
|
|
|
|
func init() {
|
|
// rootCmd.AddCommand()
|
|
}
|