import type { DatabaseSync } from "node:sqlite"; import { storeRecipe } from "../services.ts"; export default async (db: DatabaseSync, recipeId: string) => { const result = await storeRecipe(db, recipeId); if (!result) Deno.exit(0); };