Files
NetMapper2026/backend/app/main.py
T
Perplexity Bot 8aae681706
CI / basic-check (push) Has been cancelled
Add basic FastAPI auth and React login gate
2026-08-04 20:21:34 +00:00

10 lines
217 B
Python

from fastapi import FastAPI
from app.routes.auth import router as auth_router
app = FastAPI(title='NetMapper API')
app.include_router(auth_router)
@app.get('/health')
async def health():
return {'status': 'ok'}