feat: support alist as a storage

This commit is contained in:
Simon Ding
2024-11-17 21:21:21 +08:00
parent b136b9167f
commit 7d5ce8ba97
14 changed files with 536 additions and 121 deletions

8
pkg/alist/url.go Normal file
View File

@@ -0,0 +1,8 @@
package alist
const (
loginUrl = "/api/auth/login"
lsUrl = "/api/fs/list"
mkdirUrl = "/api/fs/mkdir"
streamUploadUrl = "/api/fs/put"
)