mirror of
https://github.com/Rarebuffalo/securelens-backend.git
synced 2026-06-19 07:00:30 +00:00
12 lines
222 B
Python
12 lines
222 B
Python
from abc import ABC, abstractmethod
|
|
|
|
import httpx
|
|
|
|
from app.schemas.scan import Issue
|
|
|
|
|
|
class BaseScanner(ABC):
|
|
@abstractmethod
|
|
async def scan(self, url: str, response: httpx.Response) -> list[Issue]:
|
|
pass
|