mirror of
https://github.com/kopia/kopia.git
synced 2026-01-25 23:08:01 -05:00
19 lines
358 B
Go
19 lines
358 B
Go
// +build windows
|
|
|
|
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/kopia/kopia/fs"
|
|
"github.com/kopia/kopia/internal/fscache"
|
|
)
|
|
|
|
var (
|
|
mountMode = mountCommand.Flag("mode", "Mount mode").Default("WEBDAV").Enum("WEBDAV")
|
|
)
|
|
|
|
func mountDirectoryFUSE(entry fs.Directory, mountPoint string, cache *fscache.Cache) error {
|
|
return fmt.Errorf("FUSE is not supported")
|
|
}
|