From 00c422756046a08de1934c1f18e49f7e2b530dfe Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Sat, 26 Mar 2022 00:18:54 +0000 Subject: [PATCH] fix: big bot rest --- template/bigbot/deps.ts | 1 - template/bigbot/src/rest/mod.ts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/template/bigbot/deps.ts b/template/bigbot/deps.ts index af84da477..314ae00c8 100644 --- a/template/bigbot/deps.ts +++ b/template/bigbot/deps.ts @@ -6,4 +6,3 @@ export * from "https://deno.land/std@0.117.0/fmt/colors.ts"; // Get data from .env files export { config as dotEnvConfig } from "https://deno.land/x/dotenv@v3.1.0/mod.ts"; export * from "https://deno.land/x/kwik@v1.2.3/mod.ts"; -// export * from "https://raw.githubusercontent.com/TriForMine/kwik/4df9d84eefee7ff299cc65e0f31adb8dbee64cde/mod.ts"; diff --git a/template/bigbot/src/rest/mod.ts b/template/bigbot/src/rest/mod.ts index 1bc32d6e9..425153a30 100644 --- a/template/bigbot/src/rest/mod.ts +++ b/template/bigbot/src/rest/mod.ts @@ -80,4 +80,4 @@ async function handleRequest(conn: Deno.Conn) { } } -type RequestMethod = "get" | "post" | "put" | "delete" | "patch"; +type RequestMethod = "post" | "put" | "delete" | "patch";