kerf-engine/engine/main.py
jlightner 291a810605 test: Wired POST /engine/trace endpoint with preprocess + vectorize pip…
- "engine/api/routes.py"
- "engine/tests/test_api.py"
- "engine/main.py"

GSD-Task: S01/T05
2026-03-26 04:22:39 +00:00

18 lines
364 B
Python

"""Kerf Engine — raster-to-vector conversion API."""
from fastapi import FastAPI
from api.routes import router
app = FastAPI(
title="Kerf Engine",
description="Raster-to-vector conversion pipeline with Potrace and VTracer modes",
version="0.1.0",
)
app.include_router(router)
@app.get("/health")
async def health():
return {"status": "ok"}