10 lines
408 B
Python

# Import all models here for easier access from other parts of the application
from app.models.cart import CartItem
from app.models.category import Category
from app.models.order import Order, OrderItem
from app.models.payment import Payment
from app.models.product import Product, ProductImage
from app.models.review import Review
from app.models.tag import ProductTag, Tag
from app.models.user import User