kenken999's picture
fda
a61be63
raw
history blame
294 Bytes
from fastapi import FastAPI, APIRouter
from app.views import app as django_app
router = APIRouter()
@router.get("/api/diamonds/")
def get_diamonds():
return django_app.get_diamonds()
@router.get("/api/brand_products/")
def get_brand_products():
return django_app.get_brand_products()