blob: eb9c3a13650add03afae310e74748198db785940 (
plain) (
blame)
1
2
3
4
5
6
|
import type { HandlerFunc, Context } from "https://deno.land/x/abc@master/mod.ts";
import { getFiles } from "../util/files.ts";
export const handlePath: HandlerFunc = async (c: Context) => {
return await c.render("./src/views/index.html", { files: await getFiles(c.path) });
};
|