diff options
Diffstat (limited to 'src/buildtool/execution_api/execution_service/server_implementation.hpp')
-rw-r--r-- | src/buildtool/execution_api/execution_service/server_implementation.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/buildtool/execution_api/execution_service/server_implementation.hpp b/src/buildtool/execution_api/execution_service/server_implementation.hpp index 4570a66c..7df517ad 100644 --- a/src/buildtool/execution_api/execution_service/server_implementation.hpp +++ b/src/buildtool/execution_api/execution_service/server_implementation.hpp @@ -18,6 +18,8 @@ #include <fstream> #include <string> +#include "src/buildtool/execution_api/common/api_bundle.hpp" + class ServerImpl { public: ServerImpl() noexcept = default; @@ -45,7 +47,7 @@ class ServerImpl { ServerImpl(ServerImpl&&) noexcept = delete; auto operator=(ServerImpl&&) noexcept -> ServerImpl& = delete; - auto Run() -> bool; + auto Run(ApiBundle const& apis) -> bool; ~ServerImpl() = default; private: |