package _115 | |
import ( | |
"github.com/alist-org/alist/v3/internal/driver" | |
"github.com/alist-org/alist/v3/internal/op" | |
) | |
type Addition struct { | |
Cookie string `json:"cookie" type:"text" help:"one of QR code token and cookie required"` | |
QRCodeToken string `json:"qrcode_token" type:"text" help:"one of QR code token and cookie required"` | |
QRCodeSource string `json:"qrcode_source" type:"select" options:"web,android,ios,tv,alipaymini,wechatmini,qandroid" default:"linux" help:"select the QR code device, default linux"` | |
PageSize int64 `json:"page_size" type:"number" default:"1000" help:"list api per page size of 115 driver"` | |
LimitRate float64 `json:"limit_rate" type:"float" default:"2" help:"limit all api request rate ([limit]r/1s)"` | |
driver.RootID | |
} | |
var config = driver.Config{ | |
Name: "115 Cloud", | |
DefaultRoot: "0", | |
// OnlyProxy: true, | |
// OnlyLocal: true, | |
// NoOverwriteUpload: true, | |
} | |
func init() { | |
op.RegisterDriver(func() driver.Driver { | |
return &Pan115{} | |
}) | |
} | |