Add song listing endpoints

This commit is contained in:
Esa Kataja
2025-05-04 21:04:45 +03:00
parent b878fc6b5b
commit 3e35e5de41
15 changed files with 1522 additions and 31 deletions
+7
View File
@@ -0,0 +1,7 @@
from fastapi import APIRouter
router = APIRouter(prefix="/auth", tags=["auth"])
@router.post("/token")
async def login():
return {"message": "Login successful"}