This commit is contained in:
Mateusz Gruszczyński
2025-10-28 21:27:10 +01:00
commit 7b41672d05
14 changed files with 1253 additions and 0 deletions

17
backends/init.py Normal file
View File

@@ -0,0 +1,17 @@
"""
LogMon Backends - Integracje z różnymi firewallami
"""
from .base import FirewallBackend
from .csf import CSFBackend
from .nftables import NFTablesBackend
from .iptables import IPTablesBackend
from .ufw import UFWBackend
__all__ = [
'FirewallBackend',
'CSFBackend',
'NFTablesBackend',
'IPTablesBackend',
'UFWBackend'
]