creating networks wip

This commit is contained in:
2025-04-07 16:39:53 +01:00
parent 32d30e00aa
commit b2070e052d
11 changed files with 108 additions and 19 deletions

View File

@@ -3,6 +3,7 @@
namespace App\Services\ServerProviders;
use App\Data\ServerProviders\CreatedServer;
use App\Data\ServerProviders\Network;
use Illuminate\Support\Collection;
use Saloon\Http\Connector;
@@ -22,4 +23,6 @@ abstract class ServerProviderService
abstract public function getLocations(): Collection;
abstract public function getImages(): Collection;
abstract public function findNetwork(string $name): ?Network;
}