Remchanv2/controller/home.js

7 lines
86 B

exports.home = (io)=>
{
return(req,res)=>
{
res.render('home')
}
}