Files
money/apps/api/src/hono.ts
2025-11-08 13:37:55 -05:00

6 lines
167 B
TypeScript

import type { AuthData } from "@money/shared/auth";
import { Hono } from "hono";
export const getHono = () =>
new Hono<{ Variables: { auth: AuthData | null } }>();