telegram-cli-bot/bot/models/__init__.py

25 lines
511 B
Python

#!/usr/bin/env python3
"""Модели данных бота."""
from bot.models.server import Server, ServerManager
from bot.models.user_state import UserState, StateManager
from bot.models.session import (
SSHSession,
SSHSessionManager,
LocalSession,
LocalSessionManager,
INPUT_PATTERNS
)
__all__ = [
"Server",
"ServerManager",
"UserState",
"StateManager",
"SSHSession",
"SSHSessionManager",
"LocalSession",
"LocalSessionManager",
"INPUT_PATTERNS",
]