summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_api/execution_service/server_implementation.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/execution_api/execution_service/server_implementation.hpp')
-rw-r--r--src/buildtool/execution_api/execution_service/server_implementation.hpp6
1 files changed, 5 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 7df517ad..ecddb8bc 100644
--- a/src/buildtool/execution_api/execution_service/server_implementation.hpp
+++ b/src/buildtool/execution_api/execution_service/server_implementation.hpp
@@ -19,6 +19,8 @@
#include <string>
#include "src/buildtool/execution_api/common/api_bundle.hpp"
+#include "src/buildtool/storage/config.hpp"
+#include "src/buildtool/storage/storage.hpp"
class ServerImpl {
public:
@@ -47,7 +49,9 @@ class ServerImpl {
ServerImpl(ServerImpl&&) noexcept = delete;
auto operator=(ServerImpl&&) noexcept -> ServerImpl& = delete;
- auto Run(ApiBundle const& apis) -> bool;
+ auto Run(StorageConfig const& storage_config,
+ Storage const& storage,
+ ApiBundle const& apis) -> bool;
~ServerImpl() = default;
private: