core/homeassistant/components/tailwind/const.py

11 lines
192 B
Python
Raw Normal View History

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