mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 07:38:04 -05:00
14 lines
246 B
Go
14 lines
246 B
Go
package http
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
bm "go-common/library/net/http/blademaster"
|
|
)
|
|
|
|
func notice(c *bm.Context) {
|
|
params := c.Request.Form
|
|
build, _ := strconv.Atoi(params.Get("build"))
|
|
c.JSON(artSrv.Notice(params.Get("platform"), build), nil)
|
|
}
|