plugins/{auth,catalog}-backend: type fix

This commit is contained in:
Patrik Oldsberg
2020-05-17 12:46:41 +02:00
parent 0ccff561c0
commit 3445778b2b
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ export async function createRouter(
const logger = options.logger.child({ plugin: 'auth' });
const router = Router();
router.get('/ping', async (req, res) => {
router.get('/ping', async (_req, res) => {
res.status(200).send('pong');
});