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

6 lines
226 B
Python

# Import all models here
from app.models.user import User
from app.models.product import Product
from app.models.inventory import Inventory
from app.models.customer import Customer
from app.models.order import Order, OrderItem