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
430 B
Python

# Import all schemas here
from app.schemas.user import User, UserCreate, UserUpdate, Token
from app.schemas.product import Product, ProductCreate, ProductUpdate, ProductWithInventory
from app.schemas.inventory import Inventory, InventoryCreate, InventoryUpdate
from app.schemas.customer import Customer, CustomerCreate, CustomerUpdate
from app.schemas.order import Order, OrderCreate, OrderUpdate, OrderItem, PaymentIntentResponse