Automated Action 609e7fb237 Implement retail management and payment API with FastAPI
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)
2025-05-12 12:00:19 +00:00

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