feat: register stitch route in API tool registry

This commit is contained in:
Siddharth Kumar Sah 2026-04-07 21:52:28 +08:00
parent 171646886f
commit 66520cdd0e

View file

@ -29,6 +29,7 @@ import { registerResize } from "./resize.js";
import { registerRotate } from "./rotate.js";
import { registerSmartCrop } from "./smart-crop.js";
import { registerSplit } from "./split.js";
import { registerStitch } from "./stitch.js";
import { registerStripMetadata } from "./strip-metadata.js";
import { registerSvgToRaster } from "./svg-to-raster.js";
import { registerTextOverlay } from "./text-overlay.js";
@ -101,6 +102,7 @@ export async function registerToolRoutes(app: FastifyInstance): Promise<void> {
// Layout & Composition
{ id: "collage", register: registerCollage },
{ id: "stitch", register: registerStitch },
{ id: "split", register: registerSplit },
{ id: "border", register: registerBorder },