phase 0 & 1 , onto the next logic

This commit is contained in:
user
2026-03-01 06:17:43 +02:00
parent 5a5f565377
commit c74523e4bc
10 changed files with 1815 additions and 7 deletions

View File

@@ -1,5 +1,15 @@
import { Hono } from "hono";
const mobileRouter = new Hono().get("/", async (c) => {
return c.json({ message: "" });
});
export const mobileRouter = new Hono()
.put("/ping", async (c) => {
return c.json({ data: "" });
})
.put("/sms/sync", async (c) => {
return c.json({ data: "" });
})
.put("/media/sync", async (c) => {
return c.json({ data: "" });
})
.post("/register", async (c) => {
return c.json({ data: "" });
});