| 5 | |
| 6 | @dataclass(frozen=True) |
| 7 | class BootstrapGraph: |
| 8 | stages: tuple[str, ...] |
| 9 | |
| 10 | def as_markdown(self) -> str: |
| 11 | lines = ['# Bootstrap Graph', ''] |
| 12 | lines.extend(f'- {stage}' for stage in self.stages) |
| 13 | return '\n'.join(lines) |
| 14 | |
| 15 | |
| 16 | def build_bootstrap_graph() -> BootstrapGraph: |
no outgoing calls
no test coverage detected