Skip to content

Commit

Permalink
fix import order of providers
Browse files Browse the repository at this point in the history
  • Loading branch information
ujjwalguptaofficial committed Jan 21, 2024
1 parent fd9b3c1 commit 69e06f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 2 additions & 4 deletions src/constants/fort_global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ import { ErrorHandler, Logger } from "../models";
import { ViewEngine, ComponentOption } from "../abstracts";
import { TErrorHandler, TGuard, TSessionStore, TShield, TTaskScheduler, TWall, TXmlParser } from "../types";
import { MustacheViewEngine, DtoValidator } from "../extra";
import { APP_NAME, CURRENT_PATH } from "./index";
import { APP_NAME, CURRENT_PATH } from "../constants";
import { ETAG_TYPE } from "../enums";
import { IScheduleTaskInput, IDtoValidator, IEtagOption, IFolderMap, ICacheStore } from "../interfaces";
import { CookieEvaluatorWall, MemorySessionStore, BlankXmlParser, PostDataEvaluatorGuard, MemoryCacheStore, CacheGuard } from "../providers";
import { CookieEvaluatorWall, MemorySessionStore, BlankXmlParser, PostDataEvaluatorGuard, MemoryCacheStore, CacheGuard, CacheWall, DefaultCronJobScheduler } from "../providers";
import { RouteHandler } from "../handlers";
import { DefaultCronJobScheduler } from "../providers/cron_job_scheduler";
import { CacheWall } from "../providers/cache_wall";
import { CacheManager } from "../utils";

const isDevelopment = process.env.NODE_ENV === 'development';
Expand Down
4 changes: 3 additions & 1 deletion src/providers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ export * from "./post_data_evaluator_guard";
export * from "./memory_session_store";
export * from "./generic_xml_parser";
export * from "./memory_api_cache_store";
export * from "./cache_guard";
export * from "./cache_guard";
export * from "./cache_wall";
export * from "./cron_job_scheduler";

0 comments on commit 69e06f5

Please sign in to comment.