站点RPC方法
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
264 B

  1. package siterpc
  2. type SiteConfigItemReqArg struct {
  3. SiteId string `json:"site_id"`
  4. Dbname string `json:"dbname"`
  5. Key string `json:"key"`
  6. }
  7. type SiteConfigItemRes struct {
  8. Type string
  9. Value string
  10. Exist bool
  11. }
  12. type ConfigListRes struct {
  13. list string
  14. }