brewman/brewman/brewman/routers/title.py

12 lines
185 B
Python

from fastapi import APIRouter
from ..core.config import settings
router = APIRouter()
@router.get("", response_model=str)
async def get_version() -> str:
return settings.TITLE