mirror of
https://github.com/home-assistant/core.git
synced 2026-09-05 13:02:34 +01: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"
|