19 lines
396 B
Python
19 lines
396 B
Python
#!/usr/bin/env python3
|
|
"""Сервисы бота."""
|
|
|
|
from bot.services.command_executor import (
|
|
execute_cli_command,
|
|
execute_cli_command_from_message,
|
|
_execute_local_command,
|
|
_execute_ssh_command,
|
|
_show_result,
|
|
)
|
|
|
|
__all__ = [
|
|
"execute_cli_command",
|
|
"execute_cli_command_from_message",
|
|
"_execute_local_command",
|
|
"_execute_ssh_command",
|
|
"_show_result",
|
|
]
|