(dir: &std::path::Path)
| 189 | } |
| 190 | |
| 191 | fn is_valid_mobile_web_dir(dir: &std::path::Path) -> bool { |
| 192 | dir.join("index.html").exists() && dir.join("assets").is_dir() |
| 193 | } |
| 194 | |
| 195 | // ── Request / Response DTOs ──────────────────────────────────────── |
| 196 |
no test coverage detected