| 12 | #include <utility> |
| 13 | |
| 14 | namespace minitts::server { |
| 15 | namespace { |
| 16 | |
| 17 | std::filesystem::path resolve_path(const std::filesystem::path & base, const std::filesystem::path & path) { |
| 18 | return path.is_absolute() ? path : base / path; |
| 19 | } |
no outgoing calls
no test coverage detected