mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 10:47:51 +00:00
10 lines
155 B
Python
10 lines
155 B
Python
"""Define Tile constants."""
|
|
import logging
|
|
|
|
DOMAIN = "tile"
|
|
|
|
DATA_COORDINATOR = "coordinator"
|
|
DATA_TILE = "tile"
|
|
|
|
LOGGER = logging.getLogger(__package__)
|