Files
dockhand/routes/api/changelog/+server.ts
Jarek Krochmalski 62e3c6439e Initial commit
2025-12-28 21:16:03 +01:00

8 lines
214 B
TypeScript

import { json } from '@sveltejs/kit';
import type { RequestHandler } from './$types';
import changelog from '$lib/data/changelog.json';
export const GET: RequestHandler = async () => {
return json(changelog);
};