12 lines
188 B
Go
12 lines
188 B
Go
package response
|
|
|
|
import "byg-backend/model/example"
|
|
|
|
type FilePathResponse struct {
|
|
FilePath string `json:"filePath"`
|
|
}
|
|
|
|
type FileResponse struct {
|
|
File example.ExaFile `json:"file"`
|
|
}
|