mirror of
https://github.com/AlistGo/alist.git
synced 2025-04-21 03:48:46 +08:00
32 lines
787 B
Go
32 lines
787 B
Go
package alist_v3
|
|
|
|
import (
|
|
"github.com/alist-org/alist/v3/internal/driver"
|
|
"github.com/alist-org/alist/v3/internal/op"
|
|
)
|
|
|
|
type Addition struct {
|
|
driver.RootPath
|
|
Address string `json:"url" required:"true"`
|
|
MetaPassword string `json:"meta_password"`
|
|
Username string `json:"username"`
|
|
Password string `json:"password"`
|
|
Token string `json:"token"`
|
|
PassUAToUpsteam bool `json:"pass_ua_to_upsteam" default:"true"`
|
|
ForwardArchiveReq bool `json:"forward_archive_requests" default:"true"`
|
|
}
|
|
|
|
var config = driver.Config{
|
|
Name: "AList V3",
|
|
LocalSort: true,
|
|
DefaultRoot: "/",
|
|
CheckStatus: true,
|
|
ProxyRangeOption: true,
|
|
}
|
|
|
|
func init() {
|
|
op.RegisterDriver(func() driver.Driver {
|
|
return &AListV3{}
|
|
})
|
|
}
|