mirror of
https://github.com/cloudreve/cloudreve.git
synced 2025-10-30 08:07:01 +08:00
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
|
|
}
|