mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-04 14:31:48 +00:00
10 lines
175 B
TypeScript
10 lines
175 B
TypeScript
import type { PageServerLoad } from './$types';
|
|
|
|
export const load: PageServerLoad = async ({ url }) => {
|
|
const code = url.searchParams.get('code');
|
|
|
|
return {
|
|
code
|
|
};
|
|
};
|