feat(expenses): add import functionality for expenses and total pending calculation

This commit is contained in:
Jose Selesan
2026-05-29 14:30:10 -03:00
parent 4b17940134
commit b1968cece9
11 changed files with 600 additions and 19 deletions

View File

@@ -0,0 +1,7 @@
import type { Context } from "hono";
import { getTotalPending } from "../expenses.service";
export async function getTotalPendingHandler(c: Context) {
const result = await getTotalPending();
return c.json(result);
}