Files
money/api/src/hono.ts
2025-10-13 21:10:46 -04: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 } }>();