lets fuckin go

This commit is contained in:
2025-08-07 22:44:19 -04:00
parent a90a914d2f
commit 9d4b17b762
18 changed files with 271 additions and 49 deletions

View File

@@ -0,0 +1,6 @@
import { Hono } from "hono";
const api = new Hono().get("/ping", (c) => c.text("pong"));
export default api;
export type ApiType = typeof api;