13 lines
270 B
Go
13 lines
270 B
Go
|
package response
|
||
|
|
||
|
import "io"
|
||
|
|
||
|
// ContentResponse 获取文件内容类方法的通用返回值。
|
||
|
// 有些上传策略需要重定向,
|
||
|
// 有些直接写文件数据到浏览器
|
||
|
type ContentResponse struct {
|
||
|
Redirect bool
|
||
|
Content io.ReadSeeker
|
||
|
URL string
|
||
|
}
|