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
|
||
|
}
|
||
|
}
|