vito/app/SSH/Services/Firewall/Firewall.php
2025-03-12 13:31:10 +01:00

11 lines
173 B
PHP
Executable File

<?php
namespace App\SSH\Services\Firewall;
use App\SSH\Services\ServiceInterface;
interface Firewall extends ServiceInterface
{
public function applyRules(): void;
}