(path string, args *GetStoragesArgs)
| 168 | } |
| 169 | |
| 170 | func GetStorage(path string, args *GetStoragesArgs) (driver.Driver, error) { |
| 171 | storageDriver, _, err := op.GetStorageAndActualPath(path) |
| 172 | if err != nil { |
| 173 | return nil, err |
| 174 | } |
| 175 | return storageDriver, nil |
| 176 | } |
| 177 | |
| 178 | func Other(ctx context.Context, args model.FsOtherArgs) (interface{}, error) { |
| 179 | res, err := other(ctx, args) |
no test coverage detected