Вынес все модули в отдельный каталог modules
This commit is contained in:
13
modules/__init__.py
Normal file
13
modules/__init__.py
Normal 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']
|
||||
|
||||
Reference in New Issue
Block a user