blob: 614e432bc9801072a1494221876f012c01531dc2 (
plain) (
blame)
1
2
3
4
5
6
7
|
import type { Group, Context } from "https://deno.land/x/abc@master/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);
}
|