2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-06 05:03:13 +08:00
Files
panel/app/http/responses/website/list.go
2023-11-11 03:19:06 +08:00

9 lines
145 B
Go

package responses
import "panel/app/models"
type List struct {
Total int64 `json:"total"`
Items []models.Website `json:"items"`
}