api.go 187 B

1234567891011
  1. package response
  2. import "dy-admin/internal/pcmserver/sys/model"
  3. type APIResponse struct {
  4. Api model.Api `json:"api"`
  5. }
  6. type APIListResponse struct {
  7. Apis []model.Api `json:"apis"`
  8. }