17 lines
461 B
Python
17 lines
461 B
Python
"""Голосовые точки по квартире: своя ветка, свой дешёвый агент, свои ключи."""
|
|
|
|
from beaver_agent.voice.frontend import VoiceFrontend
|
|
from beaver_agent.voice.texts import KEY, TITLE
|
|
from beaver_agent.voice.thread import AGENT, FRONTEND, current, open_thread, rotate
|
|
|
|
__all__ = [
|
|
"AGENT",
|
|
"FRONTEND",
|
|
"KEY",
|
|
"TITLE",
|
|
"VoiceFrontend",
|
|
"current",
|
|
"open_thread",
|
|
"rotate",
|
|
]
|