feat(apihits): so i can see if what end points are being used and when and how often
This commit is contained in:
@@ -3,6 +3,7 @@ import { createRoute, OpenAPIHono, z } from "@hono/zod-openapi";
|
||||
import { responses } from "../../../../globalUtils/routeDefs/responses.js";
|
||||
import { tryCatch } from "../../../../globalUtils/tryCatch.js";
|
||||
import { getLots } from "../../controller/lots/lots.js";
|
||||
import { apiHit } from "../../../../globalUtils/apiHits.js";
|
||||
|
||||
const app = new OpenAPIHono({ strict: false });
|
||||
|
||||
@@ -16,7 +17,7 @@ app.openapi(
|
||||
}),
|
||||
async (c: any) => {
|
||||
const { data: lotData, error: lotError } = await tryCatch(getLots());
|
||||
|
||||
apiHit(c, { endpoint: "/getlots" });
|
||||
if (lotError) {
|
||||
return c.json({
|
||||
success: false,
|
||||
|
||||
Reference in New Issue
Block a user