aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/(app)/+server.ts
blob: 904739f61d4c4aba6041f73cd59de053357df2af (plain) (blame)
1
2
3
4
5
import { redirect } from '@sveltejs/kit';

export const GET = () => {
  throw redirect(307, '/fahrplan/');
};