Files
hk4e/cmd/hk4e/fight.go
2022-12-19 22:11:55 +08:00

24 lines
421 B
Go

package main
import (
"context"
"hk4e/fight/app"
"github.com/spf13/cobra"
)
// FightCmd 检查配表命令
func FightCmd() *cobra.Command {
var cfg string
c := &cobra.Command{
Use: "fight",
Short: "fight server",
RunE: func(cmd *cobra.Command, args []string) error {
return app.Run(context.Background(), cfg)
},
}
c.Flags().StringVar(&cfg, "config", "application.toml", "config file")
return c
}