1import type { Context } from "hono"; 2 3const ping = (ctx: Context) => { 4 return ctx.json({ ping: "pong" }); 5}; 6 7export default ping;