Passed
Push — main ( 67fbf9...b28dcd )
by LCS
02:38
created

IndexController.getIndex   A

Complexity

Conditions 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
1
class IndexController {
2
    getIndex(req, res) {
3
        res.render('index', { title: 'Game Website' });
4
    }
5
}
6
7
module.exports = IndexController;