mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 07:05:48 +01:00
17 lines
410 B
Python
17 lines
410 B
Python
"""Models for Ruuvi Gateway integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import dataclasses
|
|
|
|
from .bluetooth import RuuviGatewayScanner
|
|
from .coordinator import RuuviGatewayUpdateCoordinator
|
|
|
|
|
|
@dataclasses.dataclass(frozen=True)
|
|
class RuuviGatewayRuntimeData:
|
|
"""Runtime data for Ruuvi Gateway integration."""
|
|
|
|
update_coordinator: RuuviGatewayUpdateCoordinator
|
|
scanner: RuuviGatewayScanner
|