| 6 | constexpr auto* TAG = "App"; |
| 7 | |
| 8 | LaunchId start(const std::string& id, std::shared_ptr<const Bundle> parameters) { |
| 9 | const auto service = service::loader::findLoaderService(); |
| 10 | assert(service != nullptr); |
| 11 | return service->start(id, std::move(parameters)); |
| 12 | } |
| 13 | |
| 14 | void stop() { |
| 15 | const auto service = service::loader::findLoaderService(); |
no test coverage detected