hass-core/homeassistant/components/lookin/const.py
ANMalko 626bd25129
Add LOOKin integration (#58125)
Co-authored-by: J. Nick Koston <nick@koston.org>
2021-10-21 07:10:23 -10:00

9 lines
164 B
Python

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