phase 0 & 1 ✅, onto the next logic
This commit is contained in:
@@ -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: "" });
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user