blob: be4472b4c7af63a892fac606860217b638c852aa (
plain) (
blame)
1
2
3
4
5
|
import type { HandlerFunc, Context } from "https://deno.land/x/abc@master/mod.ts";
// import type { HandlerFunc, Context } from "../abc/mod.ts";
import db from "../db/user.ts";
export const index: HandlerFunc = async (c: Context) => c.params.name;
|