aboutsummaryrefslogtreecommitdiff
path: root/models/__init__.py
blob: 70c841db40c6ebb90f9f76a70120eb9afde9090d (plain)
1
2
3
4
5
6
7
8
9
10
11
# isort: off
from .base import BaseTable
from .user import User
from .invoce import Invoice
# isort: on

__all__ = [
    "BaseTable",
    "User",
    "Invoice",
]