diff options
Diffstat (limited to 'src/handler/user.ts')
-rw-r--r-- | src/handler/user.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/handler/user.ts b/src/handler/user.ts new file mode 100644 index 0000000..33b96a2 --- /dev/null +++ b/src/handler/user.ts @@ -0,0 +1,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; |