|
123456789101112 |
- package http
-
- import "gitlink.org.cn/cloudream/storage2/client/types"
-
- type Config struct {
- Enabled bool `json:"enabled"`
- Listen string `json:"listen"`
- AuthAccessKey string `json:"authAccessKey"` // TODO 临时办法
- AuthSecretKey string `json:"authSecretKey"`
- MaxBodySize int64 `json:"maxBodySize"`
- UserSpaceID types.UserSpaceID `json:"userSpaceID"` // TODO 进行访问量统计时,当前客户端所属的存储ID。临时解决方案。
- }
|