remove unused structure

This commit is contained in:
Alireza Ahmadi
2023-09-09 13:45:00 +02:00
parent 53719ecf6a
commit ac5981352e

View File

@@ -16,16 +16,6 @@ type Msg struct {
Obj interface{} `json:"obj"`
}
type Pager struct {
Current int `json:"current"`
PageSize int `json:"page_size"`
Total int `json:"total"`
OrderBy string `json:"order_by"`
Desc bool `json:"desc"`
Key string `json:"key"`
List interface{} `json:"list"`
}
type AllSetting struct {
WebListen string `json:"webListen" form:"webListen"`
WebDomain string `json:"webDomain" form:"webDomain"`