Pin f into the cache until Unpin is called
(f fs.Fs)
| 142 | |
| 143 | // Pin f into the cache until Unpin is called |
| 144 | func Pin(f fs.Fs) { |
| 145 | createOnFirstUse() |
| 146 | c.Pin(fs.ConfigString(f)) |
| 147 | } |
| 148 | |
| 149 | // PinUntilFinalized pins f into the cache until x is garbage collected |
| 150 | // |