'use strict';
const mRoot = '../models';

const index = (req, res, next) => {
    res.render('help/index', {});
};

module.exports = {
    index
};