mirror of https://github.com/Xhofe/alist
31 lines
706 B
Go
31 lines
706 B
Go
package sftp
|
|
|
|
import (
|
|
"github.com/alist-org/alist/v3/internal/driver"
|
|
"github.com/alist-org/alist/v3/internal/op"
|
|
)
|
|
|
|
type Addition struct {
|
|
Address string `json:"address" required:"true"`
|
|
Username string `json:"username" required:"true"`
|
|
PrivateKey string `json:"private_key" type:"text"`
|
|
Password string `json:"password"`
|
|
Passphrase string `json:"passphrase"`
|
|
driver.RootPath
|
|
IgnoreSymlinkError bool `json:"ignore_symlink_error" default:"false" info:"Ignore symlink error"`
|
|
}
|
|
|
|
var config = driver.Config{
|
|
Name: "SFTP",
|
|
LocalSort: true,
|
|
OnlyLocal: true,
|
|
DefaultRoot: "/",
|
|
CheckStatus: true,
|
|
}
|
|
|
|
func init() {
|
|
op.RegisterDriver(func() driver.Driver {
|
|
return &SFTP{}
|
|
})
|
|
}
|