package main import ( "math/rand" "texas-poker-bk/internal/conf" "texas-poker-bk/internal/server" "time" ) func startServer() { // TODO ηœŸιšζœΊζ•° crypto/rand rand.Seed(time.Now().UnixNano()) httpServer := server.NewServer() err := httpServer.Run(conf.Conf.Http.Addr) if err != nil { panic(err) } } func main() { startServer() }