mirror of
https://github.com/dsec-hub/dsec-notebook.git
synced 2026-09-22 07:24:27 +00:00
4 lines
189 B
TypeScript
4 lines
189 B
TypeScript
import { loadPostSeo } from "$lib/server/pageSeo";
|
|
import type { PageServerLoad } from "./$types";
|
|
|
|
export const load: PageServerLoad = ({ params }) => loadPostSeo(params.id, params.code);
|