Formatting implemented for @philipp
All checks were successful
continuous-integration/drone/pr Build is passing

ref #34
This commit is contained in:
Nicolai Ort 2020-12-18 23:00:27 +01:00
parent cea5993049
commit a0a08f7724

View File

@ -11,13 +11,12 @@ export class StatusController {
let connection; let connection;
try { try {
connection = getConnection(); connection = getConnection();
} } catch {
catch { throw new Error("sth is wrong, i can feel it....");
throw new Error("sth is wrong, i can feel it....")
} }
return { return {
"controllers": "✔", "controllers": "✔",
"database connection": "✔" "database connection": "✔"
} };
} }
} }