move schema.ts to module

This commit is contained in:
miloschwartz
2025-03-23 17:11:48 -04:00
parent 013f342ff6
commit fefb07e14c
141 changed files with 146 additions and 145 deletions

View File

@@ -1,6 +1,6 @@
import { Request } from "express";
import { User } from "@server/db/schema";
import { Session } from "@server/db/schema";
import { User } from "@server/db/schemas";
import { Session } from "@server/db/schemas";
export interface AuthenticatedRequest extends Request {
user: User;