command_announce.go 221 B

12345678910111213
  1. package client
  2. // 公告列表
  3. func AnnounceList() Response {
  4. msg := "AnnounceList"
  5. return DoRequest(msg, "")
  6. }
  7. // 刷新列表
  8. func AnnounceRefresh() Response {
  9. msg := "AnnounceRefresh"
  10. return DoRequest(msg, "")
  11. }