Project created from basic template

This commit is contained in:
Quests Agent
2025-09-29 17:56:30 +02:00
commit a4ecf845bf
26 changed files with 3887 additions and 0 deletions

11
src/server/index.ts Normal file
View File

@@ -0,0 +1,11 @@
import { Hono } from "hono";
import { rpcApp } from "./routes/rpc";
import { clientEntry } from "./routes/client-entry";
const app = new Hono();
app.route("/rpc", rpcApp);
app.get("/*", clientEntry);
export default app;