From 8ab0a95b732f4380b6633a856cb667075bbf7d0c Mon Sep 17 00:00:00 2001 From: rozetko Date: Thu, 19 Jan 2023 23:54:10 +0300 Subject: [PATCH] hotfix --- src/utils.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/utils.ts b/src/utils.ts index 9e1e5d4..a1fcc7f 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,9 +1,5 @@ -import { getApiKey } from './services/api_keys'; - import * as moment from 'moment-timezone'; -import * as _ from 'lodash'; - export async function promisify(method: (...params: any[]) => Promise | void, ...params: any[]) { return new Promise((resolve, reject) => { method(...params, (err, result) => {