1
0
mirror of https://github.com/elisspace/core.git synced 2026-09-03 06:26:06 +00:00
Files
core/homeassistant/components/lookin/const.py
ANMalko 749258a05d Add climate platform to lookin (#58175)
Co-authored-by: J. Nick Koston <nick@koston.org>
2021-10-21 12:00:48 -10:00

11 lines
179 B
Python

"""The lookin integration constants."""
from __future__ import annotations
from typing import Final
DOMAIN: Final = "lookin"
PLATFORMS: Final = [
"sensor",
"climate",
]