This commit is contained in:
creations 2025-04-20 14:39:31 -04:00
parent 6d46ef48d0
commit df6e2325d9
Signed by: creations
GPG key ID: 8F553AA4320FC711
4 changed files with 36 additions and 16 deletions

View file

@ -4,6 +4,10 @@ export const routeDef = {
...idRouteDef,
};
export const handler = async (request: ExtendedRequest, body: unknown, server: BunServer) => {
export const handler = async (
request: ExtendedRequest,
body: unknown,
server: BunServer,
) => {
return await idHandler(request);
};