12 lines
216 B
Go
12 lines
216 B
Go
package response
|
|
|
|
import "git.echol.cn/loser/Go-Web-Template/server/model/common"
|
|
|
|
type FilePathResponse struct {
|
|
FilePath string `json:"filePath"`
|
|
}
|
|
|
|
type FileResponse struct {
|
|
File common.ExaFile `json:"file"`
|
|
}
|