forum-app/backend/routers/auth.py
2024-04-06 13:58:20 -04:00

9 lines
135 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.get('/auth/')
async def get_user():
return {'user': 'authenticated'}