Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 7 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | class IndexController { |
||
2 | getIndex(req, res) { |
||
3 | res.render('index', { title: 'Game Website' }); |
||
4 | } |
||
5 | } |
||
6 | |||
7 | module.exports = IndexController; |