update: improve project structure and add linting/formatting

This commit is contained in:
Rasmus Q
2026-03-15 20:58:55 +00:00
parent 3e33cf9499
commit 47e02d81c3
27 changed files with 103 additions and 25 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import { fail, redirect } from '@sveltejs/kit';
import type { Actions, PageServerLoad } from './$types';
import { db } from '$lib/server/db';
import { users } from '$lib/server/schema';
import { users } from '$lib/db/schema';
import { eq } from 'drizzle-orm';
import bcrypt from 'bcrypt';
import { env } from '$env/dynamic/private';