mirror of https://github.com/Xhofe/alist
feat: sort and proxy config
parent
ac0f984136
commit
84eb978731
|
@ -7,4 +7,19 @@ type Account struct {
|
|||
Driver string `json:"driver"`
|
||||
Status string `json:"status"`
|
||||
Addition string `json:"addition"`
|
||||
Sort
|
||||
Proxy
|
||||
}
|
||||
|
||||
type Sort struct {
|
||||
OrderBy string `json:"order_by"`
|
||||
OrderDirection string `json:"order_direction"`
|
||||
ExtractFolder string `json:"extract_folder"`
|
||||
}
|
||||
|
||||
type Proxy struct {
|
||||
WebProxy string `json:"web_proxy"`
|
||||
WebdavProxy bool `json:"webdav_proxy"`
|
||||
WebdavDirect bool `json:"webdav_direct"`
|
||||
DownProxyUrl string `json:"down_proxy_url"`
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue