This commit is contained in:
basil 2025-06-17 00:47:00 -04:00
parent a6ef3bf1b6
commit f174c4e02d
Signed by: basil
SSH key fingerprint: SHA256:y04xIFL/yqNaG9ae9Vl95vELtHfApGAIoOGLeVLP/fE
14 changed files with 626 additions and 1 deletions

19
cmd/smoke-test.go Normal file
View file

@ -0,0 +1,19 @@
package cmd
import (
"git.red-panda.pet/pandaware/protohacking/x/smoketest"
"github.com/spf13/cobra"
)
var smokeTest = &cobra.Command{
Use: "smoketest",
Aliases: []string{"p0"},
Short: "Problem 0: Smoke Test",
Run: func(cmd *cobra.Command, args []string) {
runServer(smoketest.New)
},
}
func init() {
rootCmd.AddCommand(smokeTest)
}