mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/1Panel-dev/1Panel.git
synced 2026-09-20 16:13:59 +08:00
9 lines
204 B
Go
9 lines
204 B
Go
package dto
|
|
|
|
type LogFileRes struct {
|
|
Lines []string `json:"lines"`
|
|
IsEndOfFile bool `json:"isEndOfFile"`
|
|
TotalPages int `json:"totalPages"`
|
|
TotalLines int `json:"totalLines"`
|
|
}
|