mirror of
https://github.com/kopia/kopia.git
synced 2026-01-24 22:38:00 -05:00
18 lines
293 B
Go
18 lines
293 B
Go
// +build windows
|
|
|
|
package cli
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/kopia/kopia/fs"
|
|
)
|
|
|
|
var (
|
|
mountMode = mountCommand.Flag("mode", "Mount mode").Default("WEBDAV").Enum("WEBDAV")
|
|
)
|
|
|
|
func mountDirectoryFUSE(entry fs.Directory, mountPoint string) error {
|
|
return fmt.Errorf("FUSE is not supported")
|
|
}
|