(host: str, port: int)
| 967 | |
| 968 | |
| 969 | def _print_banner(host: str, port: int) -> None: |
| 970 | display = "localhost" if host in ("0.0.0.0", "") else host |
| 971 | print(f"[*] OpenOSINT {_VERSION} web server") |
| 972 | print(f"[*] App → http://{display}:{port}/") |
| 973 | print(f"[*] Docs → http://{display}:{port}/docs/") |
| 974 | print("[*] Press Ctrl+C to stop.") |
no outgoing calls
no test coverage detected