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