Result for an fbuild CLI invocation.
| 42 | |
| 43 | @dataclass |
| 44 | class FbuildCommandResult: |
| 45 | """Result for an fbuild CLI invocation.""" |
| 46 | |
| 47 | success: bool |
| 48 | output: str |
| 49 | returncode: int | None = None |
| 50 | |
| 51 | |
| 52 | @typechecked |
no outgoing calls
no test coverage detected