diff options
author | Marvin Borner | 2020-07-18 20:09:03 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-18 20:09:03 +0200 |
commit | 5ad4683e2e59ea1d00558945872089bebea1c2b1 (patch) | |
tree | 5292033dc32b089f6d7a0775162bf24a5683acd1 /src/handler | |
parent | 26f84c953f9fbb9c5afb4f8a063759d272256f36 (diff) |
Fixed abc submodule
Diffstat (limited to 'src/handler')
-rw-r--r-- | src/handler/user.ts | 4 |
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; |