goweb-gin-demo/server/model/system/response/sys_breakpoint_continue.go

12 lines
186 B
Go
Raw Normal View History

2021-11-02 17:48:39 +08:00
package response
2021-11-10 11:11:14 +08:00
import "goweb-gin-demo/model/system"
2021-11-02 17:48:39 +08:00
type FilePathResponse struct {
FilePath string `json:"filePath"`
}
type FileResponse struct {
2021-11-10 11:11:14 +08:00
File system.File `json:"file"`
2021-11-02 17:48:39 +08:00
}