12 lines
186 B
Go
12 lines
186 B
Go
|
package response
|
||
|
|
||
|
import "goweb-gin-demo/model/system"
|
||
|
|
||
|
type FilePathResponse struct {
|
||
|
FilePath string `json:"filePath"`
|
||
|
}
|
||
|
|
||
|
type FileResponse struct {
|
||
|
File system.File `json:"file"`
|
||
|
}
|