Files
playzer/apps/backend/src/modules/plan/plan.routes.ts
Jose Selesan 9ae270609d Initial commit
2026-04-08 22:53:11 -03:00

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)