19 lines
358 B
Go
19 lines
358 B
Go
package cmd
|
|
|
|
import (
|
|
"git.red-panda.pet/pandaware/protohacking/x/budgetchat"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var budgetChat = &cobra.Command{
|
|
Use: "budgetchat",
|
|
Aliases: []string{"p3"},
|
|
Short: "Problem 3: Budget Chat",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
runServer(budgetchat.New)
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(budgetChat)
|
|
}
|