chore(auth): cleanup unused imports

This commit is contained in:
2025-10-07 06:45:12 -05:00
parent e31552374e
commit d49c8807d0

View File

@@ -1,12 +1,8 @@
import { Router } from "express";
import type { Request, Response } from "express";
import z from "zod";
import { db } from "../../../pkg/db/db.js";
import { userRoles } from "../../../pkg/db/schema/user_roles.js";
import { DrizzleError, eq } from "drizzle-orm";
import { requireAuth } from "../../../pkg/middleware/authMiddleware.js";
import { auth } from "../../../pkg/auth/auth.js";
import { authClient } from "../../../pkg/auth/auth-client.js";
const router = Router();