aboutsummaryrefslogtreecommitdiff
path: root/src/groups/user.ts
blob: 59cda820e598d561fccb3541d55ddce898a7d215 (plain) (blame)
1
2
3
4
5
6
7
// 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);
}