(self)
| 14 | |
| 15 | def __init__(self): |
| 16 | self.logger = get_logger(f"osint.{self.name}") |
| 17 | |
| 18 | @abstractmethod |
| 19 | async def run(self, target: Target) -> ScanResult: |
| 20 | """Execute the OSINT module against a target. |
nothing calls this directly
no test coverage detected