projectx/cmd/root.go
2025-03-21 11:05:42 +08:00

26 lines
354 B
Go

package cmd
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
var configPath string
var rootCmd = &cobra.Command{
Use: "testpaper",
Short: "Start testpaper server",
Long: `testpaper service`,
Run: func(cmd *cobra.Command, args []string) {
},
}
func Execute() {
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}