const express = require("express") const authService = require("../../../../services/authService") const router = express.Router() router.use("", authService.isLogged, authService.hasAdminRights) module.exports = router