10 lines
249 B
Python
10 lines
249 B
Python
from typing import Protocol, Any, runtime_checkable
|
|
|
|
|
|
@runtime_checkable
|
|
class ServiceProtocolsInterface(Protocol):
|
|
"""
|
|
Contrato que garante que todo serviço tenha um método execute.
|
|
"""
|
|
|
|
def execute(self, schema: Any) -> Any: ...
|