mirror of
https://gitcode.com/flipped-aurora/gin-vue-admin.git
synced 2026-05-14 19:28:00 +00:00
12 lines
180 B
Go
12 lines
180 B
Go
package response
|
|
|
|
import "gin-vue-admin/model"
|
|
|
|
type FilePathResponse struct {
|
|
FilePath string `json:"filePath"`
|
|
}
|
|
|
|
type FileResponse struct {
|
|
File model.ExaFile `json:"file"`
|
|
}
|