12 lines
211 B
Go
12 lines
211 B
Go
package response
|
|
|
|
import "git.echol.cn/loser/xiecheng_server/model/example"
|
|
|
|
type FilePathResponse struct {
|
|
FilePath string `json:"filePath"`
|
|
}
|
|
|
|
type FileResponse struct {
|
|
File example.ExaFile `json:"file"`
|
|
}
|