zd / app /api /v1 /router.py
Juna190825's picture
Create app/api/v1/router.py
6fccdd5 verified
raw
history blame contribute delete
395 Bytes
from fastapi import APIRouter
from .endpoints import dictionary, suggestions, word_of_day
api_router = APIRouter()
api_router.include_router(dictionary.router, prefix="/dictionary", tags=["Dictionary"])
api_router.include_router(suggestions.router, prefix="/suggestions", tags=["Suggestions"])
api_router.include_router(word_of_day.router, prefix="/word-of-the-day", tags=["Word of the Day"])