WithFuseDir mounts a directory at the path using FUSE to access Cloud SQL instances.
(dir string)
| 37 | // WithFuseDir mounts a directory at the path using FUSE to access Cloud SQL |
| 38 | // instances. |
| 39 | func WithFuseDir(dir string) Option { |
| 40 | return func(c *Command) { |
| 41 | c.conf.FUSEDir = dir |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | // WithFuseTempDir sets the temp directory where Unix sockets are created with |
| 46 | // FUSE |
no outgoing calls