from __future__ import annotations from typing import Protocol from agente_contas_tim.workflows.contracts import WorkflowDef class WorkflowRepository(Protocol): def get_active(self, name: str) -> WorkflowDef: ... def get_version(self, name: str, version: int) -> WorkflowDef: ...