rainbow-fe/src/hooks.ts

9 lines
226 B
TypeScript
Raw Normal View History

2022-04-23 17:37:15 +00:00
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;
};