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

export const index: HandlerFunc = async (c: Context) => c.params.name;
export const register: HandlerFunc = async (c: Context) => {
    const { username, email, password } = await c.body();
    await db.createUser(email, username, password);

}