mirror of
https://github.com/cloudreve/Cloudreve.git
synced 2024-04-21 12:31:40 +00:00
19 lines
405 B
Go
19 lines
405 B
Go
package response
|
|
|
|
import "io"
|
|
|
|
// ContentResponse 获取文件内容类方法的通用返回值。
|
|
// 有些上传策略需要重定向,
|
|
// 有些直接写文件数据到浏览器
|
|
type ContentResponse struct {
|
|
Redirect bool
|
|
Content RSCloser
|
|
URL string
|
|
}
|
|
|
|
// RSCloser 存储策略适配器返回的文件流,有些策略需要带有Closer
|
|
type RSCloser interface {
|
|
io.ReadSeeker
|
|
io.Closer
|
|
}
|