This commit is contained in:
2025-06-29 10:39:00 +08:00
parent 605197345b
commit b45eb83fe4
15 changed files with 597 additions and 3 deletions

14
Server/scene/main.go Normal file
View File

@@ -0,0 +1,14 @@
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)
}
}