| 13 | |
| 14 | @dataclass |
| 15 | class ExchangeConfig: |
| 16 | name: str |
| 17 | type: ExchangeType = ExchangeType.DIRECT |
| 18 | durable: bool = True |
| 19 | auto_delete: bool = False |
| 20 | internal: bool = False |
| 21 | arguments: dict[str, Any] | None = None |
| 22 | |
| 23 | |
| 24 | @dataclass |
nothing calls this directly
no outgoing calls
no test coverage detected