mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 15:48:07 -05:00
12 lines
191 B
Go
12 lines
191 B
Go
|
|
package http
|
||
|
|
|
||
|
|
import (
|
||
|
|
bm "go-common/library/net/http/blademaster"
|
||
|
|
)
|
||
|
|
|
||
|
|
// staffConfig 获取联合投稿配置
|
||
|
|
func staffConfig(c *bm.Context) {
|
||
|
|
res := staffSvc.Config()
|
||
|
|
c.JSON(res, nil)
|
||
|
|
}
|