mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
15 lines
217 B
Go
15 lines
217 B
Go
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)
|
|
}
|