Files
gauvainboiche 3315cb2336 feat: Semaine 8
2026-05-11 09:25:19 +02:00

5 lines
117 B
Python

from typing import Any, Protocol
class Usecase(Protocol):
def execute(self, *args, **kwargs) -> Any:
...