This commit is contained in:
aozhiwei 2023-08-09 17:04:52 +08:00
parent 25a08e1ddb
commit 886568fe14
2 changed files with 21 additions and 0 deletions

18
server/imserver/app.go Normal file
View File

@ -0,0 +1,18 @@
package main
import (
"f5"
)
type App_ struct {
f5.App_
}
var App = new (App_)
func (this *App_) Init() {
}
func (this *App_) UnInit() {
}

View File

@ -1,4 +1,7 @@
package main
func main() {
App.Init()
App.Run()
App.UnInit()
}