mirror of https://github.com/Xhofe/alist
				
				
				
			
		
			
				
	
	
		
			29 lines
		
	
	
		
			568 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			568 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"`
 | |
| 	driver.RootPath
 | |
| }
 | |
| 
 | |
| var config = driver.Config{
 | |
| 	Name:        "SFTP",
 | |
| 	LocalSort:   true,
 | |
| 	OnlyLocal:   true,
 | |
| 	DefaultRoot: "/",
 | |
| 	CheckStatus: true,
 | |
| }
 | |
| 
 | |
| func init() {
 | |
| 	op.RegisterDriver(func() driver.Driver {
 | |
| 		return &SFTP{}
 | |
| 	})
 | |
| }
 |