kerf-engine/engine/main.py
jlightner da8e1c152a chore: Created engine/ Python project with FastAPI skeleton, all depend…
- "engine/pyproject.toml"
- "engine/main.py"
- "engine/.gitignore"
- "README.md"

GSD-Task: S01/T01
2026-03-26 04:07:16 +00:00

14 lines
305 B
Python

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