aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/(app)/+server.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/(app)/+server.ts')
-rw-r--r--src/routes/(app)/+server.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/routes/(app)/+server.ts b/src/routes/(app)/+server.ts
new file mode 100644
index 0000000..904739f
--- /dev/null
+++ b/src/routes/(app)/+server.ts
@@ -0,0 +1,5 @@
+import { redirect } from '@sveltejs/kit';
+
+export const GET = () => {
+ throw redirect(307, '/fahrplan/');
+};