mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 14:53:19 +08:00
9 lines
143 B
Go
9 lines
143 B
Go
package responses
|
|
|
|
import "panel/app/models"
|
|
|
|
type CertList struct {
|
|
Total int64 `json:"total"`
|
|
Items []models.Cert `json:"items"`
|
|
}
|