14 lines
330 B
Python
14 lines
330 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 ssh
|
||
|
||
__all__ = ['SSHBase', 'PostgreSQLOperations', 'C1ClusterOperations', 'ssh']
|
||
|