()
| 45 | |
| 46 | |
| 47 | def build_execution_registry() -> ExecutionRegistry: |
| 48 | return ExecutionRegistry( |
| 49 | commands=tuple(MirroredCommand(module.name, module.source_hint) for module in PORTED_COMMANDS), |
| 50 | tools=tuple(MirroredTool(module.name, module.source_hint) for module in PORTED_TOOLS), |
| 51 | ) |