import type { RequestHandler } from './$types'; import { json } from '@sveltejs/kit'; import { getDb } from '$lib/server/db'; import { countWishlistRecipes } from '$lib/server/wishlist/repository'; export const GET: RequestHandler = async () => { return json({ count: countWishlistRecipes(getDb()) }); };