mirror of
https://github.com/rclone/rclone.git
synced 2024-12-26 00:49:22 +01:00
9 lines
151 B
Go
9 lines
151 B
Go
package fuse
|
|
|
|
func daemonTimeout(name string) MountOption {
|
|
return func(conf *mountConfig) error {
|
|
conf.options["timeout"] = name
|
|
return nil
|
|
}
|
|
}
|