aboutsummaryrefslogtreecommitdiff
path: root/src/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.ts')
-rw-r--r--src/main.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.ts b/src/main.ts
index 94f8b33..99f605c 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -22,6 +22,7 @@ app.static("/public/", "./src/public/"); // Manage static files
app.get("/", async (c: Context) => await c.render("./src/views/index.html")); // Render index on /
app.get("/files/*", handlePath);
+app.get("/files/", handlePath);
// Load groups dynamically
// deno-lint-ignore ban-ts-comment