1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-21 19:39:06 +00:00
Files
core/homeassistant/components/tailwind/const.py
2024-03-08 10:35:23 -05:00

11 lines
192 B
Python

"""Constants for the Tailwind integration."""
from __future__ import annotations
import logging
from typing import Final
DOMAIN: Final = "tailwind"
LOGGER = logging.getLogger(__package__)