feat(connectors): implement category validation in scraping process

This commit is contained in:
2026-03-14 16:59:43 +00:00
parent d96f459104
commit 8a423b2a29
5 changed files with 28 additions and 2 deletions

View File

@@ -22,4 +22,8 @@ class BaseConnector(ABC):
category: str = None,
post_limit: int = 10
) -> list[Post]:
...
@abstractmethod
def category_exists(self, category: str) -> bool:
...