diff options
Diffstat (limited to 'models/__init__.py')
| -rw-r--r-- | models/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/models/__init__.py b/models/__init__.py index 70c841d..412f467 100644 --- a/models/__init__.py +++ b/models/__init__.py | |||
| @@ -1,11 +1,15 @@ | |||
| 1 | # isort: off | 1 | # isort: off |
| 2 | from .base import BaseTable | 2 | from .base import BaseTable |
| 3 | from .rich_text import RichText | ||
| 3 | from .user import User | 4 | from .user import User |
| 4 | from .invoce import Invoice | 5 | from .invoce import Invoice |
| 6 | from .payment import Payment | ||
| 5 | # isort: on | 7 | # isort: on |
| 6 | 8 | ||
| 7 | __all__ = [ | 9 | __all__ = [ |
| 8 | "BaseTable", | 10 | "BaseTable", |
| 9 | "User", | 11 | "User", |
| 10 | "Invoice", | 12 | "Invoice", |
| 13 | "Payment", | ||
| 14 | "RichText", | ||
| 11 | ] | 15 | ] |
