mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-29 04:05:38 +02:00
10 lines
191 B
Python
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__)
|