Add Tailwind integration (#105926)

Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
This commit is contained in:
Franck Nijhof 2023-12-18 08:42:53 +01:00 committed by GitHub
parent 6acbbec839
commit d50b79ba84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 758 additions and 0 deletions

View file

@ -0,0 +1,9 @@
"""Constants for the Tailwind integration."""
from __future__ import annotations
import logging
from typing import Final
DOMAIN: Final = "tailwind"
LOGGER = logging.getLogger(__package__)