mirror of
https://github.com/yweber/lodel2.git
synced 2025-11-12 17:09:16 +01:00
Theorically all of those imports were tested by unit testing, but we've got no inssurance about that. And even if unit tests had check for syntax errors, all pieces of code were not tested. We cannot be sure that an import was missed or forgotten...
11 lines
333 B
Python
11 lines
333 B
Python
#-*- coding:utf-8 -*-
|
|
|
|
from lodel.context import LodelContext
|
|
LodelContext.expose_modules(globals(), {
|
|
'lodel.plugin': ['LodelHook']})
|
|
from .datasource import DummyDatasource as Datasource
|
|
|
|
def migration_handler_class():
|
|
from .migration_handler import DummyMigrationHandler as migration_handler
|
|
return migration_handler
|
|
|