Fix demo login credentials and form encoding
CI / basic-check (push) Has been cancelled

This commit is contained in:
Perplexity Bot
2026-08-04 20:27:26 +00:00
parent a6d0dd6c68
commit fa6561de58
3 changed files with 47 additions and 38 deletions
+3 -3
View File
@@ -1,9 +1,9 @@
from fastapi import FastAPI
from app.routes.auth import router as auth_router
app = FastAPI(title='NetMapper API')
app = FastAPI(title="NetMapper API")
app.include_router(auth_router)
@app.get('/health')
@app.get("/health")
async def health():
return {'status': 'ok'}
return {"status": "ok"}