From 32a52a1a1bf6534481f779f17393b4c598f79821 Mon Sep 17 00:00:00 2001 From: Izuco Date: Mon, 18 Apr 2022 11:36:14 +0200 Subject: [PATCH] Eslint --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 4a9f866..ce58672 100644 --- a/index.ts +++ b/index.ts @@ -49,7 +49,7 @@ import update from './modules/module.updater'; await service.cli(); } } else { - let service = argv.service === 'funi' ? new (await import('./funi')).default() : new (await import('./crunchy')).default() as ServiceClass; + const service = argv.service === 'funi' ? new (await import('./funi')).default() : new (await import('./crunchy')).default() as ServiceClass; await service.cli(); } })(); \ No newline at end of file