12 lines
184 B
Go
12 lines
184 B
Go
|
package response
|
||
|
|
||
|
import "miniapp/model/system"
|
||
|
|
||
|
type SysAPIResponse struct {
|
||
|
Api system.SysApi `json:"api"`
|
||
|
}
|
||
|
|
||
|
type SysAPIListResponse struct {
|
||
|
Apis []system.SysApi `json:"apis"`
|
||
|
}
|