(mountPath string)
| 31 | } |
| 32 | |
| 33 | func HasStorage(mountPath string) bool { |
| 34 | return storagesMap.Has(utils.FixAndCleanPath(mountPath)) |
| 35 | } |
| 36 | |
| 37 | func GetStorageByMountPath(mountPath string) (driver.Driver, error) { |
| 38 | mountPath = utils.FixAndCleanPath(mountPath) |
no test coverage detected