import { Hono } from 'hono'; import getAllRoute from './features/get-all/route'; const routes = new Hono(); routes.route('/', getAllRoute); export default routes;