Helpers
| 54 | |
| 55 | // Helpers |
| 56 | static inline auto indexFileName(QString const& mod_slug) -> QString |
| 57 | { |
| 58 | if (mod_slug.endsWith(".pw.toml")) |
| 59 | return mod_slug; |
| 60 | return QString("%1.pw.toml").arg(mod_slug); |
| 61 | } |
| 62 | |
| 63 | static ModPlatform::ProviderCapabilities ProviderCaps; |
| 64 |
no test coverage detected