remove routes/v1/test

This commit is contained in:
Philipp Dormann 2020-12-05 18:02:49 +01:00
parent 993096741d
commit 740d7f10f5
1 changed files with 0 additions and 10 deletions

View File

@ -1,10 +0,0 @@
import { Router } from "express";
import jwtauth from "../../middlewares/jwtauth";
const router = Router();
router.use("*", jwtauth, async (req, res, next) => {
return res.send("ok");
});
export default router;