Cloudreve/pkg/filesystem/context.go

15 lines
239 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-26 20:59:57 +08:00
// PathCtx 文件或目录的虚拟路径
PathCtx
2019-11-18 19:09:56 +08:00
)