staff.go 191 B

1234567891011
  1. package http
  2. import (
  3. bm "go-common/library/net/http/blademaster"
  4. )
  5. // staffConfig 获取联合投稿配置
  6. func staffConfig(c *bm.Context) {
  7. res := staffSvc.Config()
  8. c.JSON(res, nil)
  9. }