refactor: Create admin enpoints and some renaming of api endpoints

This commit is contained in:
JSC
2025-08-01 15:34:35 +02:00
parent 43be92c8f9
commit 3132175354
9 changed files with 999 additions and 1269 deletions

View File

@@ -0,0 +1,10 @@
"""Admin API endpoints."""
from fastapi import APIRouter
from app.api.v1.admin import sounds
router = APIRouter(prefix="/admin")
# Include all admin sub-routers
router.include_router(sounds.router)