Files
lan_checker/checkers/__init__.py
Antoine Van Elstraete c72117e6e1 Add DNS checker
Checks DNS server availability via ping then performs configurable
DNS query (record_type: A, AAAA, TXT, MX, etc.).

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-26 17:39:16 +01:00

12 lines
232 B
Python

from .ping import PingChecker
from .http import HttpChecker
from .snmp import SnmpChecker
from .dns import DnsChecker
CHECKERS = {
"ping": PingChecker,
"http": HttpChecker,
"snmp": SnmpChecker,
"dns": DnsChecker,
}