10 lines
186 B
TypeScript
10 lines
186 B
TypeScript
//place exported routes below this line
|
|
import { Hono } from "hono";
|
|
import actions from "./userRoutes";
|
|
|
|
const routes = new Hono();
|
|
|
|
routes.route("/", actions);
|
|
|
|
export default routes;
|