feat: expose version with healthcheck query

This commit is contained in:
Ali BARIN
2022-07-27 15:15:39 +02:00
parent 5271af8b94
commit e7c734c55e
4 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
const healthcheck = () => {
return {
version: process.env.npm_package_version,
}
};
export default healthcheck;