mirror of
https://github.com/acepanel/panel.git
synced 2026-02-06 05:03:13 +08:00
9 lines
145 B
Go
9 lines
145 B
Go
package responses
|
|
|
|
import "panel/app/models"
|
|
|
|
type List struct {
|
|
Total int64 `json:"total"`
|
|
Items []models.Website `json:"items"`
|
|
}
|