mirror of
https://github.com/kopia/kopia.git
synced 2026-01-28 08:18:58 -05:00
19 lines
368 B
Go
19 lines
368 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(defaultMountMode()).Enum("WEBDAV")
|
|
)
|
|
|
|
func mountDirectoryFUSE(entry fs.Directory, mountPoint string, cache *fscache.Cache) error {
|
|
return fmt.Errorf("FUSE is not supported")
|
|
}
|