Init: bootstrap go module

This commit is contained in:
2025-09-04 11:01:05 +08:00
commit 6d7074198f
20 changed files with 658 additions and 0 deletions

11
cmd/serve/root.go Normal file
View File

@@ -0,0 +1,11 @@
package serve
import "github.com/spf13/cobra"
var RootCmd = &cobra.Command{
Use: "serve",
}
func init() {
RootCmd.AddCommand(backendCmd)
}