Files
epusdt/src/command/root.go
T
assimon 0b5eef242c init
2022-03-29 20:25:05 +08:00

14 lines
179 B
Go

package command
import "github.com/spf13/cobra"
var rootCmd = &cobra.Command{}
func Execute() error {
return rootCmd.Execute()
}
func init() {
rootCmd.AddCommand(httpCmd)
}