From fe2e22ba17906823efc6d48f4203e49f0cf0a95e Mon Sep 17 00:00:00 2001 From: Matthieu Jolimaitre Date: Fri, 2 Feb 2024 16:45:27 +0100 Subject: [PATCH] fix unused import --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index 00dd472..7c4912a 100755 --- a/src/main.ts +++ b/src/main.ts @@ -1,6 +1,6 @@ #!/usr/bin/env -S deno run --allow-read --allow-write --allow-net --allow-env --unstable-kv -import { log_from, read_conf, root_path, SimpleResult, wait } from "./utils.ts"; +import { log_from, read_conf, root_path, SimpleResult } from "./utils.ts"; import { State } from "./state.ts"; import { RuleSet } from "./rules.ts"; import { EpitlsBot } from "./bot.ts";