From 09dc3d11af8cc555533adab2169fa1369e8e36b4 Mon Sep 17 00:00:00 2001 From: rigormorrtiss Date: Mon, 10 May 2021 21:31:33 +0400 Subject: [PATCH] refactor(util): util-specific dependencies file (#920) --- deps.ts => src/util/deps.ts | 0 src/util/utils.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename deps.ts => src/util/deps.ts (100%) diff --git a/deps.ts b/src/util/deps.ts similarity index 100% rename from deps.ts rename to src/util/deps.ts diff --git a/src/util/utils.ts b/src/util/utils.ts index 511890904..b48a71957 100644 --- a/src/util/utils.ts +++ b/src/util/utils.ts @@ -1,4 +1,4 @@ -import { encode } from "../../deps.ts"; +import { encode } from "./deps.ts"; import { eventHandlers } from "../bot.ts"; import { isActionRow } from "../helpers/type_guards/is_action_row.ts"; import { isButton } from "../helpers/type_guards/is_button.ts";