mirror of
https://github.com/home-assistant/core.git
synced 2026-02-27 13:25:35 +00:00
14 lines
292 B
Python
14 lines
292 B
Python
"""Support for Qwikswitch devices."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
from homeassistant.util.hass_dict import HassKey
|
|
|
|
if TYPE_CHECKING:
|
|
from pyqwikswitch.async_ import QSUsb
|
|
|
|
DOMAIN = "qwikswitch"
|
|
DATA_QUIKSWITCH: HassKey[QSUsb] = HassKey(DOMAIN)
|