mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-04 05:29:06 +00:00
8 lines
214 B
TypeScript
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);
|
|
};
|