from typing import Protocol from domain.entities import Article class ArticleSource(Protocol): def fetch_articles(self) -> list[Article]: ...