mirror of
https://github.com/rclone/rclone.git
synced 2024-11-24 01:14:30 +01:00
11 lines
191 B
Go
11 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
|
||
|
}
|