Cloudreve/pkg/filesystem/response/common.go
2019-12-08 22:17:36 +08:00

12 lines
270 B
Go

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