mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +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);
|
|
};
|