formatted

This commit is contained in:
Abhinav Adduri 2017-06-08 15:02:00 -07:00
parent 6cb1fc433e
commit 5fe901e31d
2 changed files with 2 additions and 4 deletions

View file

@ -35,7 +35,7 @@ app.get('/exists/:id', (req, res) => {
let id = req.params.id;
storage.exists(id).then(doesExist => {
res.sendStatus(doesExist ? 200 : 404);
})
});
});
app.get('/download/:id', (req, res) => {