You've already forked DataMate
* refactor: remove db table management from LS adapter (mv to scripts later); change adapter to use the same MySQL DB as other modules. * refactor: Rename LS Adapter module to datamate-python
12 lines
265 B
Python
12 lines
265 B
Python
# app/models/operator/__init__.py
|
|
|
|
from .operator import Operator
|
|
from .operator_category import OperatorCategory
|
|
from .operator_category_relation import OperatorCategoryRelation
|
|
|
|
__all__ = [
|
|
"Operator",
|
|
"OperatorCategory",
|
|
"OperatorCategoryRelation"
|
|
]
|