mirror of
https://gitcode.com/flipped-aurora/gin-vue-admin.git
synced 2026-07-10 15:28:21 +00:00
12 lines
190 B
Go
12 lines
190 B
Go
|
|
package response
|
||
|
|
|
||
|
|
import "gin-vue-admin/model/system"
|
||
|
|
|
||
|
|
type SysAPIResponse struct {
|
||
|
|
Api system.SysApi `json:"api"`
|
||
|
|
}
|
||
|
|
|
||
|
|
type SysAPIListResponse struct {
|
||
|
|
Apis []system.SysApi `json:"apis"`
|
||
|
|
}
|