|
@@ -23,19 +23,19 @@ from transport import sql
|
|
try:
|
|
try:
|
|
from transport import nosql
|
|
from transport import nosql
|
|
except Exception as e:
|
|
except Exception as e:
|
|
- pass
|
|
|
|
|
|
+ nosql = {}
|
|
try:
|
|
try:
|
|
from transport import cloud
|
|
from transport import cloud
|
|
except Exception as e:
|
|
except Exception as e:
|
|
- pass
|
|
|
|
|
|
+ cloud = {}
|
|
try:
|
|
try:
|
|
from transport import warehouse
|
|
from transport import warehouse
|
|
except Exception as e:
|
|
except Exception as e:
|
|
- pass
|
|
|
|
|
|
+ warehouse = {}
|
|
try:
|
|
try:
|
|
from transport import other
|
|
from transport import other
|
|
except Exception as e:
|
|
except Exception as e:
|
|
- pass
|
|
|
|
|
|
+ other = {}
|
|
|
|
|
|
|
|
|
|
|
|
|