2025-09-27 02:52:38 -04:00
|
|
|
//place exported routes below this line
|
2025-09-27 11:13:37 -04:00
|
|
|
import { Hono } from "hono";
|
|
|
|
|
import actions from "./userRoutes";
|
2025-09-27 02:52:38 -04:00
|
|
|
|
|
|
|
|
const routes = new Hono();
|
|
|
|
|
|
2025-09-27 11:13:37 -04:00
|
|
|
routes.route("/", actions);
|
2025-09-27 02:52:38 -04:00
|
|
|
|
2025-09-27 11:13:37 -04:00
|
|
|
export default routes;
|