aboutsummaryrefslogtreecommitdiff
path: root/src/groups/user.ts
blob: b8518dc9b516f460bffc015e5bc908e5b452b185 (plain) (blame)
1
2
3
4
5
6
7
8
import type { Group, Context } from "https://deno.land/x/abc@master/mod.ts";
import * as handlers from "../handler/user.ts";

export default function (g: Group) {
    g.get("/:name", handlers.index);
    g.post("/register", handlers.register);
    g.post("/login", handlers.login);
}