diff --git a/src/index.ts b/src/index.ts index b4fd0c7..f4a5d39 100644 --- a/src/index.ts +++ b/src/index.ts @@ -27,6 +27,10 @@ app.use( json(), ) +app.get('/health', (_, res) => { + res.status(200).send('OK') +}) + function loadStaticFile(relativePath: string) { return readFileSync(path.join(__dirname, relativePath), 'utf-8') }