chore: log
All checks were successful
ci / docker (push) Successful in 5m20s

This commit is contained in:
Tine 2024-04-20 20:32:52 +02:00
parent 50d5a9c70f
commit 5545b3f330
Signed by: mentos1386
SSH key fingerprint: SHA256:MNtTsLbihYaWF8j1fkOHfkKNlnN1JQfxEU/rBU8nCGw

View file

@ -1,8 +1,12 @@
import { Hono } from "https://deno.land/x/hono@v4.2.5/mod.ts"; import { Hono } from "https://deno.land/x/hono@v4.2.5/mod.ts";
import { serveStatic } from "https://deno.land/x/hono@v4.2.5/middleware.ts"; import {
serveStatic,
logger,
} from "https://deno.land/x/hono@v4.2.5/middleware.ts";
const cache = await Deno.openKv(); const cache = await Deno.openKv();
const app = new Hono(); const app = new Hono();
app.use(logger());
// .well-known for matrix // .well-known for matrix
app.get("/.well-known/matrix/client", (c) => app.get("/.well-known/matrix/client", (c) =>