added actions, routes, and socketio bun engine
This commit is contained in:
11
concord-server/src/routes/index.ts
Normal file
11
concord-server/src/routes/index.ts
Normal 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;
|
||||
Reference in New Issue
Block a user