Skip to content

Commit

Permalink
feat: health update
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutosh887 committed Jul 13, 2023
1 parent f4fecd8 commit eee0983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/controllers/healthController.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Request, Response } from 'express';

export function getHealthCheck(request: Request, response: Response) {
response.send('Working fine!').status(200);
response.sendStatus(200).send('Working fine!');
}

0 comments on commit eee0983

Please sign in to comment.