
This API provides endpoints for: - Product and inventory management - Customer management - Order processing - Payment processing with Stripe integration - User authentication generated with BackendIM... (backend.im)
8 lines
366 B
Python
8 lines
366 B
Python
# Import all the models, so that Base has them before being
|
|
# imported by Alembic
|
|
from app.db.base_class import Base # noqa
|
|
from app.models.product import Product # noqa
|
|
from app.models.inventory import Inventory # noqa
|
|
from app.models.customer import Customer # noqa
|
|
from app.models.order import Order, OrderItem # noqa
|
|
from app.models.user import User # noqa |