This commit is contained in:
assimon
2022-03-29 20:25:05 +08:00
commit 0b5eef242c
69 changed files with 3932 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package command
import "github.com/spf13/cobra"
var rootCmd = &cobra.Command{}
func Execute() error {
return rootCmd.Execute()
}
func init() {
rootCmd.AddCommand(httpCmd)
}