From ded7998fbc2e6e4e2b8fc3018021f0c62bce1f89 Mon Sep 17 00:00:00 2001 From: Molunerfinn Date: Mon, 6 Jan 2020 20:21:49 +0800 Subject: [PATCH] :hammer: Refactor: fileName case --- src/main/utils/shortKeyHandler.ts | 2 +- src/main/utils/{shortkeyService.ts => shortKeyService.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/main/utils/{shortkeyService.ts => shortKeyService.ts} (100%) diff --git a/src/main/utils/shortKeyHandler.ts b/src/main/utils/shortKeyHandler.ts index 329b484..7a7a4ef 100644 --- a/src/main/utils/shortKeyHandler.ts +++ b/src/main/utils/shortKeyHandler.ts @@ -9,7 +9,7 @@ import { import logger from './logger' import GuiApi from './guiApi' import db from '#/datastore' -import shortKeyService from './shortkeyService' +import shortKeyService from './shortKeyService' import picgo from './picgo' class ShortKeyHandler { diff --git a/src/main/utils/shortkeyService.ts b/src/main/utils/shortKeyService.ts similarity index 100% rename from src/main/utils/shortkeyService.ts rename to src/main/utils/shortKeyService.ts