refactori into packages

This commit is contained in:
collerek
2020-08-11 19:43:42 +02:00
parent 146dbea015
commit 45653d36c7
13 changed files with 1005 additions and 977 deletions

5
orm/models/__init__.py Normal file
View File

@ -0,0 +1,5 @@
from orm.models.model import Model
__all__ = [
"Model"
]