Files
NetMapper2026/backend/app/main.py
T

10 lines
217 B
Python
Raw Normal View History

from fastapi import FastAPI
2026-08-04 20:21:34 +00:00
from app.routes.auth import router as auth_router
2026-08-04 20:21:34 +00:00
app = FastAPI(title='NetMapper API')
app.include_router(auth_router)
2026-08-04 20:21:34 +00:00
@app.get('/health')
async def health():
return {'status': 'ok'}