| 8 | |
| 9 | @dataclass(frozen=True) |
| 10 | class MirroredCommand: |
| 11 | name: str |
| 12 | source_hint: str |
| 13 | |
| 14 | def execute(self, prompt: str) -> str: |
| 15 | return execute_command(self.name, prompt).message |
| 16 | |
| 17 | |
| 18 | @dataclass(frozen=True) |
no outgoing calls
no test coverage detected