const EmployeeController = { index(req, res) { res.status(200); res.json( { msg: 'működik'} ); } } module.exports = EmployeeController;