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