- "engine/pyproject.toml" - "engine/main.py" - "engine/.gitignore" - "README.md" GSD-Task: S01/T01
14 lines
305 B
Python
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"}
|