alist/drivers/quark/meta.go

26 lines
593 B
Go
Raw Normal View History

2022-09-02 13:36:47 +00:00
package quark
import (
"github.com/alist-org/alist/v3/internal/driver"
"github.com/alist-org/alist/v3/internal/op"
)
type Addition struct {
Cookie string `json:"cookie" required:"true"`
2022-09-04 05:07:53 +00:00
driver.RootID
OrderBy string `json:"order_by" type:"select" options:"none,file_type,file_name,updated_at" default:"none"`
2022-09-02 13:36:47 +00:00
OrderDirection string `json:"order_direction" type:"select" options:"asc,desc" default:"asc"`
}
var config = driver.Config{
2022-09-10 06:38:47 +00:00
Name: "Quark",
OnlyProxy: true,
DefaultRoot: "0",
2022-09-02 13:36:47 +00:00
}
func init() {
op.RegisterDriver(func() driver.Driver {
return &Quark{}
})
2022-09-02 13:36:47 +00:00
}