import { Hono } from 'hono' import { listPlansHandler } from '@/modules/plan/handlers/list-plans.handler' import type { AppEnv } from '@/types/hono' export const planRoutes = new Hono() planRoutes.get('/', listPlansHandler)