mirror of
https://github.com/restic/restic.git
synced 2024-12-22 15:57:07 +00:00
10 lines
191 B
Go
10 lines
191 B
Go
package fuse
|
|
|
|
// for TestMountOptionCommaError
|
|
func ForTestSetMountOption(k, v string) MountOption {
|
|
fn := func(conf *mountConfig) error {
|
|
conf.options[k] = v
|
|
return nil
|
|
}
|
|
return fn
|
|
}
|