fix(routes): Correct require paths for errors.js in subdirectory routes

This commit is contained in:
Krystie
2026-03-30 00:21:25 -07:00
parent 2929e52b14
commit 564c442ea4
7 changed files with 7 additions and 7 deletions

View File

@@ -3,7 +3,7 @@ const fs = require('fs');
const path = require('path');
const { CADDY } = require('../../constants');
const { exists } = require('../../fs-helpers');
const { ValidationError, AuthenticationError } = require('../errors');
const { ValidationError, AuthenticationError } = require('../../errors');
module.exports = function({ configStateManager, servicesStateManager, asyncHandler, log }) {
const express = require('express');