diff options
author | LarsVomMars | 2020-07-12 18:07:59 +0200 |
---|---|---|
committer | LarsVomMars | 2020-07-12 18:07:59 +0200 |
commit | e39dbbaeaee6d3dcf40bf74aba932aacfa34fa18 (patch) | |
tree | 09a40a99e40f765f569d14a7ce678df9135f27a5 /src/handler/user.ts | |
parent | 7023dc2a6920aa6389ac2b28bcdbaacdb4413e00 (diff) |
Example code
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; |