core/homeassistant/components/notion/const.py

14 lines
267 B
Python
Raw Normal View History

"""Define constants for the Notion integration."""
from datetime import timedelta
2019-07-31 19:25:30 +00:00
DOMAIN = "notion"
DEFAULT_SCAN_INTERVAL = timedelta(minutes=1)
2019-07-31 19:25:30 +00:00
DATA_CLIENT = "client"
2019-07-31 19:25:30 +00:00
TOPIC_DATA_UPDATE = "data_update"
2019-07-31 19:25:30 +00:00
TYPE_BINARY_SENSOR = "binary_sensor"
TYPE_SENSOR = "sensor"