mirror of
https://github.com/home-assistant/core.git
synced 2025-05-07 07:29:17 +00:00
13 lines
207 B
Python
13 lines
207 B
Python
"""Constants for the Axis component."""
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
|
|
DOMAIN = "axis"
|
|
|
|
CONF_CAMERA = "camera"
|
|
CONF_EVENTS = "events"
|
|
CONF_MODEL = "model"
|
|
|
|
DEFAULT_TRIGGER_TIME = 0
|