Context object shared across commands via ctx.obj.
| 74 | |
| 75 | @dataclass |
| 76 | class CLIContext: |
| 77 | """Context object shared across commands via ctx.obj.""" |
| 78 | |
| 79 | config: UnityCLIConfig |
| 80 | client: UnityClient |
| 81 | output: OutputConfig = OutputConfig(mode=OutputMode.PRETTY) |