feat: routes

This commit is contained in:
2026-06-06 13:00:01 +03:00
parent 83abcd02dd
commit 87b48e941e
22 changed files with 525 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
"""Storage analysis and cleanup endpoints."""
from typing import Any
from fastapi import APIRouter
router = APIRouter(prefix="/storage", tags=["storage"])
@router.get("")
async def get_storage_stats() -> Any: ...
@router.get("/duplicates")
async def get_duplicates() -> Any: ...
@router.get("/broken")
async def get_broken_files() -> Any: ...
@router.get("/missing-metadata")
async def get_missing_metadata() -> Any: ...
@router.post("/cleanup")
async def run_cleanup() -> Any: ...