Created some user endpoints ; Pretty code

This commit is contained in:
Kevin Puig
2025-09-27 11:13:37 -04:00
parent 122cfdd8c3
commit b22734831e
12 changed files with 240 additions and 240 deletions

View File

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