aboutsummaryrefslogtreecommitdiff
path: root/src/handler/user.ts
blob: 33b96a2b2fb77c5366a3185c422d05324da466af (plain) (blame)
1
2
3
4
import type { HandlerFunc, Context } from "https://deno.land/x/abc@v1/mod.ts";
import db from "../db/user.ts";

export const index: HandlerFunc = async (c: Context) => c.params.name;