mirror of
https://github.com/home-assistant/core.git
synced 2025-06-06 06:07:07 +00:00
10 lines
224 B
Python
10 lines
224 B
Python
"""The lookin integration constants."""
|
|
from __future__ import annotations
|
|
|
|
from typing import Final
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN: Final = "lookin"
|
|
PLATFORMS: Final = [Platform.CLIMATE, Platform.SENSOR]
|