✨ Add pass handler for edge cases
This commit is contained in:
parent
bccee391c2
commit
038e71604f
1 changed files with 4 additions and 0 deletions
4
main.py
4
main.py
|
@ -201,6 +201,9 @@ def aaaa_records_handler(zone, records):
|
|||
)
|
||||
)
|
||||
|
||||
def pass_handler(zone, records):
|
||||
pass
|
||||
|
||||
HANDLERS = {
|
||||
"soa": soa_handler,
|
||||
"originv4": originv4_handler,
|
||||
|
@ -212,6 +215,7 @@ HANDLERS = {
|
|||
"srv_records": srv_records_handler,
|
||||
"a_records": a_records_handler,
|
||||
"aaaa_records": aaaa_records_handler,
|
||||
"name": pass_handler
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue