Return the integration for *key*, or ``None`` if not registered.
(key: str)
| 30 | |
| 31 | |
| 32 | def get_integration(key: str) -> IntegrationBase | None: |
| 33 | """Return the integration for *key*, or ``None`` if not registered.""" |
| 34 | return INTEGRATION_REGISTRY.get(key) |
| 35 | |
| 36 | |
| 37 | # -- Register built-in integrations -------------------------------------- |