1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-07 23:49:17 +00:00
2024-02-27 13:50:02 +01:00

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,
}
}