Hey is a decentralized and permissionless social media app built with Lens Protocol 🌿

Fix ping route to be synchronous (#5808)

authored by yoginth.com and committed by

GitHub 8e56a0d7 a6f7bf50

+1 -1
+1 -1
apps/api/src/routes/ping.ts
··· 1 1 import type { Context } from "hono"; 2 2 3 - const ping = async (ctx: Context) => { 3 + const ping = (ctx: Context) => { 4 4 return ctx.json({ ping: "pong" }); 5 5 }; 6 6