import type { GetSession } from '@sveltejs/kit'; export const getSession: GetSession = async () => { const session: App.Session = { instance: { url: 'https://trans.enby.town', token: 'bweep' } }; return session; };