
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)
5 lines
180 B
Python
5 lines
180 B
Python
from app.crud.user import user
|
|
from app.crud.product import product
|
|
from app.crud.inventory import inventory
|
|
from app.crud.customer import customer
|
|
from app.crud.order import order |