mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
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',
|
|
},
|
|
}
|
|
}
|