aboutsummaryrefslogtreecommitdiff
path: root/src/handler
diff options
context:
space:
mode:
authorMarvin Borner2020-07-18 20:09:03 +0200
committerMarvin Borner2020-07-18 20:09:03 +0200
commit5ad4683e2e59ea1d00558945872089bebea1c2b1 (patch)
tree5292033dc32b089f6d7a0775162bf24a5683acd1 /src/handler
parent26f84c953f9fbb9c5afb4f8a063759d272256f36 (diff)
Fixed abc submodule
Diffstat (limited to 'src/handler')
-rw-r--r--src/handler/user.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/handler/user.ts b/src/handler/user.ts
index 78db609..be4472b 100644
--- a/src/handler/user.ts
+++ b/src/handler/user.ts
@@ -1,5 +1,5 @@
-// import type { HandlerFunc, Context } from "https://deno.land/x/abc@v1/mod.ts";
-import type { HandlerFunc, Context } from "../abc/mod.ts";
+import type { HandlerFunc, Context } from "https://deno.land/x/abc@master/mod.ts";
+// import type { HandlerFunc, Context } from "../abc/mod.ts";
import db from "../db/user.ts";
export const index: HandlerFunc = async (c: Context) => c.params.name;