11 lines
179 B
Go
11 lines
179 B
Go
package response
|
|
|
|
import "gin-vue-admin/model"
|
|
|
|
type FilePathResponse struct {
|
|
FilePath string `json:"filePath"`
|
|
}
|
|
|
|
type FileResponse struct {
|
|
File model.ExaFile `json:"file"`
|
|
} |