import { twitchClient } from "$lib"; import type { PageLoad } from "./$types"; export const load: PageLoad = async ({ params }) => { await twitchClient.getSubscriptionStatus(); return {}; };