blob: ae6d2ad848d712c9dd9147a8995685d651e3c954 (
plain) (
blame)
1
2
3
4
5
6
|
import type { Group, Context } from "https://deno.land/x/abc@v1/mod.ts";
import * as handlers from "../handler/user.ts";
export default function (g: Group) {
g.get("/:name", handlers.index);
}
|