mirror of https://github.com/Xhofe/alist
38 lines
952 B
Go
38 lines
952 B
Go
package template
|
|
|
|
import (
|
|
"github.com/alist-org/alist/v3/internal/driver"
|
|
"github.com/alist-org/alist/v3/internal/op"
|
|
)
|
|
|
|
type Addition struct {
|
|
// Usually one of two
|
|
driver.RootID
|
|
// define other
|
|
RefreshToken string `json:"refresh_token" required:"true"`
|
|
FamilyID string `json:"family_id" help:"Keep it empty if you want to use your personal drive"`
|
|
SortRule string `json:"sort_rule" type:"select" options:"name_asc,name_desc,time_asc,time_desc,size_asc,size_desc" default:"name_asc"`
|
|
|
|
AccessToken string `json:"access_token"`
|
|
}
|
|
|
|
var config = driver.Config{
|
|
Name: "WoPan",
|
|
LocalSort: false,
|
|
OnlyLocal: false,
|
|
OnlyProxy: false,
|
|
NoCache: false,
|
|
NoUpload: false,
|
|
NeedMs: false,
|
|
DefaultRoot: "0",
|
|
CheckStatus: false,
|
|
Alert: "",
|
|
NoOverwriteUpload: true,
|
|
}
|
|
|
|
func init() {
|
|
op.RegisterDriver(func() driver.Driver {
|
|
return &Wopan{}
|
|
})
|
|
}
|