15 lines
176 B
JavaScript
15 lines
176 B
JavaScript
class HomeController {
|
|
|
|
index(req, res) {
|
|
|
|
res.render("home/index", {
|
|
|
|
title: "PantryHub"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = new HomeController(); |