package _12312import (3"github.com/alist-org/alist/v3/internal/driver"4"github.com/alist-org/alist/v3/internal/op"5)67type Addition struct {8Username string `json:"username" required:"true"`9Password string `json:"password" required:"true"`10SafePassword string `json:"safe_password"`11driver.RootID12//OrderBy string `json:"order_by" type:"select" options:"file_id,file_name,size,update_at" default:"file_name"`13//OrderDirection string `json:"order_direction" type:"select" options:"asc,desc" default:"asc"`14AccessToken string15}1617var config = driver.Config{18Name: "123Pan",19DefaultRoot: "0",20LocalSort: true,21}2223func init() {24op.RegisterDriver(func() driver.Driver {25return &Pan123{}26})27}282930