mirror of https://github.com/shunfei/cronsun
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
926 B
53 lines
926 B
package main
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/cockroachdb/cmux"
|
|
|
|
"sunteng/commons/event"
|
|
"sunteng/commons/log"
|
|
"sunteng/cronsun/conf"
|
|
"sunteng/cronsun/models"
|
|
"sunteng/cronsun/web"
|
|
)
|
|
|
|
func main() {
|
|
if err := models.Init(); err != nil {
|
|
log.Error(err.Error())
|
|
return
|
|
}
|
|
|
|
l, err := net.Listen("tcp", conf.Config.Web.BindAddr)
|
|
if err != nil {
|
|
log.Error(err.Error())
|
|
return
|
|
}
|
|
|
|
// Create a cmux.
|
|
m := cmux.New(l)
|
|
httpL := m.Match(cmux.HTTP1Fast())
|
|
httpServer, err := web.InitRouters()
|
|
if err != nil {
|
|
log.Error(err.Error())
|
|
return
|
|
}
|
|
|
|
go func() {
|
|
err := httpServer.Serve(httpL)
|
|
if err != nil {
|
|
panic(err.Error())
|
|
}
|
|
}()
|
|
|
|
go m.Serve()
|
|
|
|
log.Noticef("cronsun web server started on %s, Ctrl+C or send kill sign to exit", conf.Config.Web.BindAddr)
|
|
// 注册退出事件
|
|
// event.On(event.EXIT, n.Stop)
|
|
// 监听退出信号
|
|
event.Wait()
|
|
event.Emit(event.EXIT, nil)
|
|
log.Notice("exit success")
|
|
}
|