You've already forked DataMate
refactor: Reorganize datamate-python (#34)
refactor: Reorganize datamate-python (previously label-studio-adapter) into a DDD style structure.
This commit is contained in:
28
runtime/datamate-python/app/db/models/__init__.py
Normal file
28
runtime/datamate-python/app/db/models/__init__.py
Normal file
@@ -0,0 +1,28 @@
|
||||
|
||||
from .dataset_management import (
|
||||
Dataset,
|
||||
DatasetTag,
|
||||
DatasetFiles,
|
||||
DatasetStatistics,
|
||||
Tag
|
||||
)
|
||||
|
||||
from .user_management import (
|
||||
User
|
||||
)
|
||||
|
||||
from .annotation_management import (
|
||||
AnnotationTemplate,
|
||||
LabelingProject
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"Dataset",
|
||||
"DatasetTag",
|
||||
"DatasetFiles",
|
||||
"DatasetStatistics",
|
||||
"Tag",
|
||||
"User",
|
||||
"AnnotationTemplate",
|
||||
"LabelingProject",
|
||||
]
|
||||
Reference in New Issue
Block a user