haldis/app/models/__init__.py

18 lines
523 B
Python
Raw Normal View History

2019-09-09 23:06:11 +00:00
"The base file for everything related to the models"
# This file will expose what we want from the models module.
# This will probably be everything. But putting the imports here makes it possible to import all
# models in one line like this:
#
# from models import User, Item, ...
#
# Instead of this:
# from models.user import User
# from models.item import Item
# ...
from .database import db
from .order import Order
from .orderitem import OrderItem
2020-01-26 01:13:02 +00:00
from .orderitemchoice import OrderItemChoice
from .user import User