mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-11-25 19:37:41 +08:00
33 lines
979 B
Go
33 lines
979 B
Go
|
|
package halalcloudopen
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/OpenListTeam/OpenList/v4/internal/driver"
|
||
|
|
"github.com/OpenListTeam/OpenList/v4/internal/op"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Addition struct {
|
||
|
|
// Usually one of two
|
||
|
|
driver.RootPath
|
||
|
|
// define other
|
||
|
|
RefreshToken string `json:"refresh_token" required:"false" help:"If using a personal API approach, the RefreshToken is not required."`
|
||
|
|
UploadThread int `json:"upload_thread" type:"number" default:"3" help:"1 <= thread <= 32"`
|
||
|
|
|
||
|
|
ClientID string `json:"client_id" required:"true" default:""`
|
||
|
|
ClientSecret string `json:"client_secret" required:"true" default:""`
|
||
|
|
Host string `json:"host" required:"false" default:"openapi.2dland.cn"`
|
||
|
|
TimeOut int `json:"timeout" type:"number" default:"60" help:"timeout in seconds"`
|
||
|
|
}
|
||
|
|
|
||
|
|
var config = driver.Config{
|
||
|
|
Name: "HalalCloudOpen",
|
||
|
|
OnlyProxy: false,
|
||
|
|
DefaultRoot: "/",
|
||
|
|
NoLinkURL: false,
|
||
|
|
}
|
||
|
|
|
||
|
|
func init() {
|
||
|
|
op.RegisterDriver(func() driver.Driver {
|
||
|
|
return &HalalCloudOpen{}
|
||
|
|
})
|
||
|
|
}
|