Files
epusdt2/src/command/root.go
T
Ashang 20c576b9bc init
2022-04-04 16:01:36 +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)
}