faces_server_python_rknpu_o.../app/app.py
2025-12-27 15:36:20 +01:00

8 lines
279 B
Python

from fastapi import FastAPI
from app.api.faces import router as faces_router
from app.api.photos import router as photos_router
app = FastAPI(title="Face Recognition Server")
app.include_router(faces_router, prefix="/faces")
app.include_router(photos_router, prefix="/photos")