start of it

This commit is contained in:
user
2026-03-01 04:44:50 +02:00
parent 5bf1148a4f
commit 0886c6070c

View File

@@ -0,0 +1,5 @@
import { Hono } from "hono";
const mobileRouter = new Hono().get("/", async (c) => {
return c.json({ message: "" });
});