rainbow-fe/src/hooks.ts

9 lines
221 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 = {
2022-05-11 10:53:41 +00:00
instance: { url: 'https://trans.enby.town', token: '' }
2022-04-23 17:37:15 +00:00
};
return session;
};