mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 10:17:51 +00:00
13 lines
285 B
Python
13 lines
285 B
Python
"""Asterisk tests constants."""
|
|
|
|
from homeassistant.components.asterisk_mbox import DOMAIN
|
|
from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_PORT
|
|
|
|
CONFIG = {
|
|
DOMAIN: {
|
|
CONF_HOST: "localhost",
|
|
CONF_PASSWORD: "password",
|
|
CONF_PORT: 1234,
|
|
}
|
|
}
|