mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 22:18:29 -05:00
34 lines
673 B
Go
34 lines
673 B
Go
|
|
package http
|
||
|
|
|
||
|
|
import (
|
||
|
|
"go-common/app/job/main/tv/conf"
|
||
|
|
xreport "go-common/app/job/main/tv/service/report"
|
||
|
|
"go-common/library/log"
|
||
|
|
bm "go-common/library/net/http/blademaster"
|
||
|
|
)
|
||
|
|
|
||
|
|
var report *xreport.Service
|
||
|
|
|
||
|
|
// Init init http service
|
||
|
|
func Init(c *conf.Config) {
|
||
|
|
report = xreport.New(c)
|
||
|
|
// init inner router
|
||
|
|
engineIn := bm.DefaultServer(c.HTTPServer)
|
||
|
|
innerRouter(engineIn)
|
||
|
|
// init inner server
|
||
|
|
if err := engineIn.Start(); err != nil {
|
||
|
|
log.Error("bm.DefaultServer error(%v)", err)
|
||
|
|
panic(err)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// innerRouter init local router api path.
|
||
|
|
func innerRouter(e *bm.Engine) {
|
||
|
|
// ping monitor
|
||
|
|
e.Ping(ping)
|
||
|
|
}
|
||
|
|
|
||
|
|
// ping check server ok.
|
||
|
|
func ping(c *bm.Context) {
|
||
|
|
}
|