5 lines
117 B
Python
5 lines
117 B
Python
from typing import Any, Protocol
|
|
|
|
class Usecase(Protocol):
|
|
def execute(self, *args, **kwargs) -> Any:
|
|
... |