Files
hk4e/cmd/fight/main.go

29 lines
384 B
Go

package main
import (
"context"
"flag"
"fmt"
_ "net/http/pprof"
"os"
"hk4e/fight/app"
"hk4e/pkg/statsviz_serve"
)
var (
config = flag.String("config", "application.toml", "config file")
)
func main() {
flag.Parse()
go func() {
_ = statsviz_serve.Serve("0.0.0.0:5678")
}()
err := app.Run(context.TODO(), *config)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
}