Skip to content

Commit

Permalink
fix unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
craftycram committed Feb 19, 2024
1 parent 1f7b510 commit 3e2cd7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blaze",
"version": "2.0.1",
"version": "2.0.2",
"description": "blazing fast ci/cd. small rest api service to receive ghcr event hooks to update services running in a dockerized portainer instance",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ function updateStack(stackUpdate: Record<string, any>): Promise<void> {
}

// adding a health check endpoint
app.get('/health', (req: Request, res: Response): void => {
app.get('/health', (_req: Request, res: Response): void => {
res.status(200).send('OK');
});

Expand Down

0 comments on commit 3e2cd7d

Please sign in to comment.