export controller
function helloWorld() {
return "hello method";
}
function mySecondMethod() {
return "hello my second method";
}
function myThirdMethod() {
return "hello my third method";
}
module.exports = {
helloWorld,
mySecondMethod,
myThirdMethod
}