'use strict'; const yohobuy = (req, res, next) => { res.render('help/yohobuy'); }; const newpower = (req, res, next) => { res.render('help/newpower'); }; const contact = (req, res, next) => { res.render('help/contact'); }; const privacy = (req, res, next) => { res.render('help/privacy'); }; const yoholink = (req, res, next) => { res.render('help/link'); }; module.exports = { yohobuy, newpower, contact, privacy, yoholink };