mirror of
https://github.com/yweber/lodel2.git
synced 2026-02-03 17:50:12 +01:00
9 lines
252 B
Python
9 lines
252 B
Python
#-*- coding:utf-8 -*-
|
|
|
|
from lodel.plugin import LodelHook
|
|
from .datasource import DummyDatasource as Datasource
|
|
|
|
def migration_handler_class():
|
|
from .migration_handler import DummyMigrationHandler as migration_handler
|
|
return migration_handler
|
|
|