23 lines
475 B
Python
23 lines
475 B
Python
#!/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 SSHClient, ssh
|
||
from .protocols import SSHProtocol, SSHOperationsBase
|
||
|
||
__all__ = [
|
||
'SSHBase',
|
||
'SSHClient',
|
||
'ssh',
|
||
'PostgreSQLOperations',
|
||
'C1ClusterOperations',
|
||
'SSHProtocol',
|
||
'SSHOperationsBase',
|
||
]
|
||
|