mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-04-02 20:56:35 +00:00
8 lines
242 B
TypeScript
8 lines
242 B
TypeScript
import OidcService from '$lib/services/oidc-service';
|
|
import type { PageLoad } from './$types';
|
|
|
|
export const load: PageLoad = async ({ params }) => {
|
|
const oidcService = new OidcService();
|
|
return await oidcService.getClient(params.id);
|
|
};
|