mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 03:07:50 +00:00
12 lines
242 B
Python
12 lines
242 B
Python
"""Constants for world clock component."""
|
|
|
|
from homeassistant.const import Platform
|
|
|
|
DOMAIN = "worldclock"
|
|
PLATFORMS = [Platform.SENSOR]
|
|
|
|
CONF_TIME_FORMAT = "time_format"
|
|
|
|
DEFAULT_NAME = "Worldclock Sensor"
|
|
DEFAULT_TIME_STR_FORMAT = "%H:%M"
|