Вынес все модули в отдельный каталог modules

This commit is contained in:
2026-02-09 22:24:39 +03:00
parent 5bbb585d9f
commit cf1cce3822
9 changed files with 26 additions and 8 deletions

13
modules/__init__.py Normal file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/python3
# -*- coding: utf-8 -*-
"""
Модули SSH клиента для миграции 1С
"""
from .ssh_base import SSHBase
from .postgresql import PostgreSQLOperations
from .c1_cluster import C1ClusterOperations
from .ssh import ssh
__all__ = ['SSHBase', 'PostgreSQLOperations', 'C1ClusterOperations', 'ssh']