(parent: &str, child: &str)
| 38 | const SCHEMA_PREFIX: &str = "schema-"; |
| 39 | |
| 40 | fn make_path(parent: &str, child: &str) -> String { |
| 41 | format!("{parent}/{child}") |
| 42 | } |
| 43 | |
| 44 | /// Filesystem catalog implementation. |
| 45 | /// |
no outgoing calls
no test coverage detected