14 lines
225 B
Go
Executable File
14 lines
225 B
Go
Executable File
package rclone
|
|
|
|
import (
|
|
_ "github.com/ncw/rclone/backend/drive"
|
|
_ "github.com/ncw/rclone/backend/local"
|
|
_ "github.com/ncw/rclone/backend/s3"
|
|
)
|
|
|
|
type RClone struct{}
|
|
|
|
func New() (*RClone, error) {
|
|
return &RClone{}, nil
|
|
}
|