8 lines
279 B
Python
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")
|