wip caddy deployment

This commit is contained in:
2025-04-24 19:55:39 +01:00
parent 46a76f7bce
commit afde59bd39
8 changed files with 126 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Drivers;
use App\Models\Service;
abstract class GatewayDriver extends Driver
{
public ?string $containerName;
public ?string $containerId;
abstract public function __construct(
?string $containerName = null,
?string $containerId = null,
?Service $service = null,
);
}