Skip to content

Commit

Permalink
Actually fixed the route this time >.>
Browse files Browse the repository at this point in the history
  • Loading branch information
arunesh90 committed May 10, 2020
1 parent 0c5cce4 commit 61f5406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const apiRouter = async (app: FastifyInstance) => {
app.get('/get/:key', getKeyRoute)
app.post('/set/:key', setKeyRoute)
app.delete('/delete/:key', deleteKeyRoute)
app.delete('/bulkDelete/:keys', bulkDeleteKeyRoute)
app.delete('/bulkDelete', bulkDeleteKeyRoute)
}

app.register(apiRouter, {
Expand Down

0 comments on commit 61f5406

Please sign in to comment.