This repository has been archived on 2026-01-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Game/Server/scene/main.go
2025-06-29 10:39:00 +08:00

15 lines
224 B
Go

package main
import (
"fmt"
"github.com/judwhite/go-svc"
"scene/app"
"syscall"
)
func main() {
if err := svc.Run(&app.Program{}, syscall.SIGINT, syscall.SIGTERM, syscall.SIGKILL); err != nil {
fmt.Println(err)
}
}