go-common/app/interface/main/web/http/broadcast.go
2019-04-22 18:49:16 +08:00

16 lines
277 B
Go

package http
import (
bm "go-common/library/net/http/blademaster"
)
func broadServer(c *bm.Context) {
v := new(struct {
Platform string `form:"platform" validate:"required"`
})
if err := c.Bind(v); err != nil {
return
}
c.JSON(webSvc.BroadServers(c, v.Platform))
}