8 lines
234 B
TypeScript
8 lines
234 B
TypeScript
import { Hono } from 'hono'
|
|
import { listPlansHandler } from '@/modules/plan/handlers/list-plans.handler'
|
|
import type { AppEnv } from '@/types/hono'
|
|
|
|
export const planRoutes = new Hono<AppEnv>()
|
|
|
|
planRoutes.get('/', listPlansHandler)
|