This commit is contained in:
Nav
2022-04-15 22:06:38 +01:00
parent ec060a469b
commit 3b0b39fe83
4 changed files with 18 additions and 3 deletions

View File

@@ -20,6 +20,14 @@ namespace Bloom::TargetController
using namespace Bloom::Events;
using namespace Bloom::Exceptions;
TargetControllerComponent::TargetControllerComponent(
const ProjectConfig& projectConfig,
const EnvironmentConfig& environmentConfig
)
: projectConfig(projectConfig)
, environmentConfig(environmentConfig)
{}
void TargetControllerComponent::run() {
try {
this->startup();

View File

@@ -37,7 +37,7 @@ namespace Bloom::TargetController
explicit TargetControllerComponent(
const ProjectConfig& projectConfig,
const EnvironmentConfig& environmentConfig
): projectConfig(projectConfig), environmentConfig(environmentConfig) {};
);
/**
* Entry point for the TargetController.