Spaces:
Sleeping
Sleeping
File size: 773 Bytes
c02ce4d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from routes.analysis_router import router as analysis_router
app = FastAPI(
title="ForensicLens API",
description="Image forensics tool using classic Digital Image Processing techniques.",
version="1.0.0",
)
# CORS — allow frontend requests
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# Mount analysis routes
app.include_router(analysis_router)
@app.get("/")
def health_check():
return {
"status": "ok",
"app": "ForensicLens API",
"routes": {
"analyze": "POST /api/analyze",
"report": "POST /api/report",
},
}
|