get deployment plan

This commit is contained in:
2025-05-22 17:19:28 +01:00
parent bfe0f8eabf
commit 4051afca4e
6 changed files with 50 additions and 17 deletions

View File

@@ -9,8 +9,6 @@ abstract class Driver
{
public ?Service $service;
public Plan $deploymentPlan;
public ?string $containerName;
public ?string $containerId;
@@ -20,4 +18,6 @@ abstract class Driver
?string $containerId = null,
?Service $service = null,
);
abstract public function getDeploymentPlan(string $deploymentHash): Plan;
}