This commit is contained in:
Andras Bacsai
2021-05-16 21:54:44 +02:00
committed by GitHub
parent 23a4ebb74a
commit adcd68c1ab
68 changed files with 2466 additions and 1194 deletions

View File

@@ -34,12 +34,11 @@ export async function get(request: Request) {
};
}
} catch (error) {
console.log(error);
return {
status: 500,
body: {
success: false,
error
error: error.message || error
}
};
}