From 46733d104611ec7a4d0518558acb2dfa5e023fa9 Mon Sep 17 00:00:00 2001 From: Trivernis Date: Sun, 29 Sep 2019 13:03:52 +0200 Subject: [PATCH] Fixed import filename for caching on globals --- src/lib/globals.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/globals.ts b/src/lib/globals.ts index ea0b8d8..d3df954 100644 --- a/src/lib/globals.ts +++ b/src/lib/globals.ts @@ -8,7 +8,7 @@ import * as fsx from "fs-extra"; import * as yaml from "js-yaml"; import * as winston from "winston"; -import {MemoryCache} from "./Cache"; +import {MemoryCache} from "./MemoryCache"; const configPath = "config.yaml"; const defaultConfig = __dirname + "/../default-config.yaml";