1
0
mirror of https://github.com/home-assistant/core.git synced 2026-06-02 13:44:32 +01:00
Files
core/homeassistant/components/labs/const.py
T
2026-04-30 21:14:48 +02:00

13 lines
249 B
Python

"""Constants for the Home Assistant Labs integration."""
from homeassistant.util.hass_dict import HassKey
from .models import LabsData
DOMAIN = "labs"
STORAGE_KEY = "core.labs"
STORAGE_VERSION = 1
LABS_DATA: HassKey[LabsData] = HassKey(DOMAIN)