feat 改名

This commit is contained in:
2025-12-15 11:29:27 +08:00
parent f511364984
commit 4983638c19
27 changed files with 0 additions and 0 deletions

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

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