Initial commit
This commit is contained in:
7
apps/backend/src/modules/plan/plan.routes.ts
Normal file
7
apps/backend/src/modules/plan/plan.routes.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user