mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-03 18:24:53 +00:00
0ab852d227
Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
14 lines
241 B
TypeScript
14 lines
241 B
TypeScript
/**
|
|
* DBAL Status Response
|
|
*/
|
|
export function getStatusResponse() {
|
|
return {
|
|
status: 'ok',
|
|
timestamp: new Date().toISOString(),
|
|
dbal: {
|
|
mode: process.env.DBAL_MODE || 'development',
|
|
version: '1.0.0',
|
|
},
|
|
}
|
|
}
|