mirror of
https://github.com/home-assistant/core.git
synced 2026-08-28 10:16:02 -05:00
10 lines
170 B
Python
10 lines
170 B
Python
"""Provides the constants needed for the component."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN: Final = "datetime"
|
|
|
|
ATTR_DATETIME = "datetime"
|
|
|
|
SERVICE_SET_VALUE = "set_value"
|