From 0886c6070cade7a4a8269eb2b296ca4539601d20 Mon Sep 17 00:00:00 2001 From: user Date: Sun, 1 Mar 2026 04:44:50 +0200 Subject: [PATCH] start of it --- apps/processor/src/domains/mobile/router.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 apps/processor/src/domains/mobile/router.ts 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: "" }); +});