()
| 419 | } |
| 420 | |
| 421 | fn rpc_error_schema() -> Value { |
| 422 | json!({ |
| 423 | "type": "object", |
| 424 | "properties": { |
| 425 | "error": { "type": "string" } |
| 426 | }, |
| 427 | "required": ["error"] |
| 428 | }) |
| 429 | } |
| 430 | |
| 431 | fn normalize_mount_path(path: &str) -> String { |
| 432 | if path.is_empty() { |