1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-04 22:19:17 +00:00
Franck Nijhof d50b79ba84
Add Tailwind integration ()
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
2023-12-18 08:42:53 +01:00

10 lines
191 B
Python

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