added DME Volume

This commit is contained in:
PxlLoewe
2025-06-02 13:10:27 -07:00
parent 44322c5e91
commit ec1a1a7fab
4 changed files with 12 additions and 13 deletions

View File

@@ -13,16 +13,6 @@ import { handleConnectDesktop } from "socket-events/connect-desktop";
import cookieParser from "cookie-parser";
import cors from "cors";
import { authMiddleware } from "modules/expressMiddleware";
import { prisma, User } from "@repo/db";
import { Request, Response, NextFunction } from "express";
declare global {
namespace Express {
interface Request {
user?: User | null;
}
}
}
const app = express();
const server = createServer(app);