summaryrefslogtreecommitdiff
path: root/routes/info.js
blob: 2b0687a1ab12b65d8deb8da40eaf5b4493114bdb (plain)
1
2
3
4
5
6
7
8
"use strict";

function info(req, res)
{
	res.render('info', {showSearchBar: true});
};

module.exports = info;