sys_api.go 187 B

123456789101112
  1. package response
  2. import "log-server/model/system"
  3. type SysAPIResponse struct {
  4. Api system.SysApi `json:"api"`
  5. }
  6. type SysAPIListResponse struct {
  7. Apis []system.SysApi `json:"apis"`
  8. }