123456789101112131415161718192021222324252627 |
- package models
- type FileReq struct {
- Path string `json:"path"`
- Key string `json:"key"`
- }
- type DeployReq struct {
-
- Key string `json:"key"`
- NginxId int `json:"nginxId"`
-
- Dir string `json:"dir"`
-
- Clear bool `json:"clear"`
-
- Cmd string `json:"cmd"`
- }
- type LoggerReq struct {
- Start int `json:"start"`
- End int `json:"end"`
-
- FileName string `json:"fileName"`
-
- MaxLines int `json:"maxLines"`
- }
|