go-common/app/interface/main/app-wall/http/operator.go

15 lines
217 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package http
import (
"time"
bm "go-common/library/net/http/blademaster"
)
func reddot(c *bm.Context) {
res := map[string]interface{}{
"data": operatorSvc.Reddot(time.Now()),
}
returnDataJSON(c, res, nil)
}