do a few
This commit is contained in:
parent
a6ef3bf1b6
commit
f174c4e02d
14 changed files with 626 additions and 1 deletions
19
cmd/budgetchat.go
Normal file
19
cmd/budgetchat.go
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue