protohacking/cmd/budgetchat.go
2025-06-17 00:47:00 -04:00

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)
}