Remove unused code

This commit is contained in:
syuilo 2017-02-12 06:03:48 +09:00
parent a7ac99f142
commit 3aec163822

View file

@ -29,18 +29,6 @@ app.get('/', (req, res) => {
res.send('YEE HAW');
});
/**
* Authetication
*/
/*app.post('*', async (req, res, next) => {
try {
ctx = await authenticate(req);
next();
} catch (e) {
res.status(403).send('AUTHENTICATION_FAILED');
}
});
*/
/**
* Register endpoint handlers
*/