hotime/example/main.go
2022-08-01 03:40:09 +08:00

18 lines
294 B
Go

package main
import (
. "code.hoteas.com/golang/hotime"
"code.hoteas.com/golang/hotime/example/app"
)
func main() {
appIns := Init("config/config.json")
appIns.SetConnectListener(func(that *Context) (isFinished bool) {
return isFinished
})
appIns.Run(Router{"app": app.AppProj})
}