You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package http
-
- import "gitlink.org.cn/cloudream/jcs-pub/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。临时解决方案。
- }
|