mirror of
https://github.com/rclone/rclone
synced 2024-11-05 01:42:31 +01:00
57d5de6fba
git grep -l github.com/ncw/rclone | xargs -d'\n' perl -i~ -lpe 's|github.com/ncw/rclone|github.com/rclone/rclone|g' goimports -w `find . -name \*.go`
14 lines
254 B
Go
14 lines
254 B
Go
// Package mockdir makes a mock fs.Directory object
|
|
package mockdir
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/rclone/rclone/fs"
|
|
)
|
|
|
|
// New makes a mock directory object with the name given
|
|
func New(name string) fs.Directory {
|
|
return fs.NewDir(name, time.Time{})
|
|
}
|