Files
NetMapper2026/backend/app/main.py
T
Perplexity Bot 00ecb1862d
CI / basic-check (push) Has been cancelled
Add backend, worker, deploy docker-compose and CI skeleton
2026-08-03 21:42:28 +00:00

12 lines
243 B
Python

from fastapi import FastAPI
app = FastAPI(title="NetMapper API", version="0.1.0")
@app.get("/health")
def health():
return {"status": "ok"}
@app.get("/api/v1")
def root():
return {"service": "netmapper-backend", "version": "0.1.0"}