mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-25 09:15:56 +00:00
5 lines
141 B
TypeScript
5 lines
141 B
TypeScript
import type { Handle } from '@sveltejs/kit';
|
|
|
|
export const handle: Handle = async ({ event, resolve }) => {
|
|
return await resolve(event);
|
|
};
|