Skip to content

Commit

Permalink
Fix healthcheck export
Browse files Browse the repository at this point in the history
  • Loading branch information
JHWelch committed Sep 3, 2023
1 parent 1420539 commit ae477d4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/controllers/healthCheckController.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { type Request, type Response } from 'express'

class HealthCheckController {
export default class HealthCheckController {
static PATHS = {
index: '/health_check',
}
Expand All @@ -9,5 +9,3 @@ class HealthCheckController {
res.status(200).send('ok')
}
}

export default HealthCheckController

0 comments on commit ae477d4

Please sign in to comment.