You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

8 regels
234 B

  1. # Base API router -- collecting all APIs here to not clutter main.py
  2. from fastapi import APIRouter
  3. from apis.v1 import route_user
  4. api_router = APIRouter()
  5. api_router.include_router(route_user.router, prefix="/user", tags=["users"])