feature: IANA update
This commit is contained in:
@@ -4,7 +4,11 @@
|
||||
import sys
|
||||
|
||||
from .cli import parse_arguments
|
||||
from .commands import handle_report_command, handle_scan_command
|
||||
from .commands import (
|
||||
handle_report_command,
|
||||
handle_scan_command,
|
||||
handle_update_iana_command,
|
||||
)
|
||||
from .output import print_error
|
||||
|
||||
|
||||
@@ -21,6 +25,8 @@ def main() -> int:
|
||||
return handle_scan_command(args)
|
||||
if args.command == "report":
|
||||
return handle_report_command(args)
|
||||
if args.command == "update-iana":
|
||||
return handle_update_iana_command(args)
|
||||
print_error(f"Unknown command: {args.command}")
|
||||
return 1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user