Add missing imports

This commit is contained in:
Owen
2026-04-28 16:52:35 -07:00
parent 2a29062659
commit de2a22aad8
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
import { Request, Response, NextFunction } from "express";
import { z } from "zod";
import { clients, db, exitNodes, statusHistory } from "@server/db";
import { clients, db, exitNodes, logsDb, statusHistory } from "@server/db";
import { roles, userSites, sites, roleSites, Site, orgs } from "@server/db";
import response from "@server/lib/response";
import HttpCode from "@server/types/HttpCode";