Cloudreve/pkg/filesystem/context.go

13 lines
187 B
Go
Raw Normal View History

2019-11-18 19:09:56 +08:00
package filesystem
type key int
const (
// GinCtx Gin的上下文
GinCtx key = iota
// SavePathCtx 文件物理路径
SavePathCtx
// FileHeaderCtx 上传的文件
FileHeaderCtx
2019-11-18 19:09:56 +08:00
)