2019-12-10 17:10:34 +08:00
|
|
|
package fsctx
|
2019-11-18 19:09:56 +08:00
|
|
|
|
|
|
|
type key int
|
|
|
|
|
|
|
|
const (
|
|
|
|
// GinCtx Gin的上下文
|
|
|
|
GinCtx key = iota
|
|
|
|
// SavePathCtx 文件物理路径
|
|
|
|
SavePathCtx
|
2019-11-19 18:10:18 +08:00
|
|
|
// FileHeaderCtx 上传的文件
|
|
|
|
FileHeaderCtx
|
2019-11-26 20:59:57 +08:00
|
|
|
// PathCtx 文件或目录的虚拟路径
|
|
|
|
PathCtx
|
2019-12-10 17:10:34 +08:00
|
|
|
// FileModelCtx 文件数据库模型
|
|
|
|
FileModelCtx
|
2019-11-18 19:09:56 +08:00
|
|
|
)
|