7 lines
155 B
Python
7 lines
155 B
Python
from typing import Protocol
|
|
|
|
from domain.entities import Article
|
|
|
|
class ArticleSource(Protocol):
|
|
def fetch_articles(self) -> list[Article]:
|
|
... |