swag-shop/backend/app/routes/shop_routes.py

12 lines
167 B
Python

from fastapi import APIRouter
router = APIRouter(
prefix="/shop",
tags=["Shop"]
)
@router.get("/")
async def get_shop_info():
raise NotImplementedError