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