aboutsummaryrefslogtreecommitdiff
path: root/models/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'models/__init__.py')
-rw-r--r--models/__init__.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/models/__init__.py b/models/__init__.py
new file mode 100644
index 0000000..70c841d
--- /dev/null
+++ b/models/__init__.py
@@ -0,0 +1,11 @@
1# isort: off
2from .base import BaseTable
3from .user import User
4from .invoce import Invoice
5# isort: on
6
7__all__ = [
8 "BaseTable",
9 "User",
10 "Invoice",
11]