Логи и конфиги переработаны, добавлен модуль ZFS и ведется работа с телеграм-ботом

This commit is contained in:
2026-02-14 19:20:55 +03:00
parent 40bf9f9887
commit f227824070
21 changed files with 1135 additions and 689 deletions

View File

@@ -7,7 +7,16 @@
from .ssh_base import SSHBase
from .postgresql import PostgreSQLOperations
from .c1_cluster import C1ClusterOperations
from .ssh import ssh
from .ssh import SSHClient, ssh
from .protocols import SSHProtocol, SSHOperationsBase
__all__ = ['SSHBase', 'PostgreSQLOperations', 'C1ClusterOperations', 'ssh']
__all__ = [
'SSHBase',
'SSHClient',
'ssh',
'PostgreSQLOperations',
'C1ClusterOperations',
'SSHProtocol',
'SSHOperationsBase',
]