diff options
author | Marvin Borner | 2020-07-18 16:51:55 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-18 16:51:55 +0200 |
commit | 34a3f2f132791ad33e6a6b59371bb6f029436ab4 (patch) | |
tree | 463bf8c68ce9b36085b1cd83179e367f09d645fb /src/groups | |
parent | 47f66e980761ad1218f51c7f51e51dd550bf0b35 (diff) |
Tests and abc fix using Lars' branch
Diffstat (limited to 'src/groups')
-rw-r--r-- | src/groups/user.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/groups/user.ts b/src/groups/user.ts index ae6d2ad..59cda82 100644 --- a/src/groups/user.ts +++ b/src/groups/user.ts @@ -1,6 +1,7 @@ -import type { Group, Context } from "https://deno.land/x/abc@v1/mod.ts"; +// import type { Group, Context } from "https://deno.land/x/abc@v1/mod.ts"; +import type { Group, Context } from "../abc/mod.ts"; import * as handlers from "../handler/user.ts"; export default function (g: Group) { - g.get("/:name", handlers.index); + g.get("/:name", handlers.index); } |