blob: 78db609c062caa6607070fa7a6e43e363ac3f83d (
plain) (
blame)
1
2
3
4
5
|
// import type { HandlerFunc, Context } from "https://deno.land/x/abc@v1/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;
|