mirror of
https://github.com/home-assistant/core.git
synced 2025-12-20 23:08:12 +00:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: balloob <1444314+balloob@users.noreply.github.com>
15 lines
285 B
Python
15 lines
285 B
Python
"""Constants for the Home Assistant Labs integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
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)
|