added actions, routes, and socketio bun engine

This commit is contained in:
PrimarchPaul
2025-09-27 02:52:38 -04:00
parent 007a5a6d84
commit 58abd3c241
4 changed files with 135 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
//place exported routes below this line
import { Hono } from 'hono';
import actions from './actions';
const routes = new Hono();
routes.route("/", actions)
export default routes;