prune: remove deadcode

This commit is contained in:
Julien Calixte
2026-02-08 20:33:06 +01:00
parent 3c69c8a241
commit 6616c35ba4

View File

@@ -15,7 +15,7 @@ jetstream.onUpdate("space.litenote.note", (event) => {
}); });
jetstream.on("close", () => { jetstream.on("close", () => {
console.log("Connection closed, PartySocket will reconnect automatically"); console.log("Connection closed");
}); });
jetstream.on("error", (error) => { jetstream.on("error", (error) => {
@@ -31,8 +31,5 @@ Bun.serve({
port: 3000, port: 3000,
routes: { routes: {
"/health": () => new Response("ok"), "/health": () => new Response("ok"),
}, }
fetch() {
return new Response("Not Found", { status: 404 });
},
}); });