diff --git a/apps/processor/src/domains/mobile/router.ts b/apps/processor/src/domains/mobile/router.ts new file mode 100644 index 0000000..eb1e265 --- /dev/null +++ b/apps/processor/src/domains/mobile/router.ts @@ -0,0 +1,5 @@ +import { Hono } from "hono"; + +const mobileRouter = new Hono().get("/", async (c) => { + return c.json({ message: "" }); +});