Spaces:
Sleeping
Sleeping
windopper
update dependencies in requirements.txt and uv.lock for caainp-cvm and torch, modify .vercelignore to exclude uv-related files, and refactor server.py by removing unused uuid import
a78c144 | from fastapi import FastAPI, Request, Response | |
| from datetime import datetime | |
| from routes.navigation import router as navigation_router | |
| from routes.cookie import router as cookie_router | |
| app = FastAPI() | |
| # 라우터 등록 | |
| app.include_router(navigation_router) | |
| app.include_router(cookie_router) | |
| def health_check(): | |
| return { | |
| "status": "healthy", | |
| "timestamp": datetime.now().isoformat(), | |
| "service": "caanip-backend" | |
| } | |