Wat dingen toegevoegd om het beter te laten werken met werkmanrooster
This commit is contained in:
parent
b5fc717e22
commit
ee158bae71
1 changed files with 2 additions and 2 deletions
4
app.js
4
app.js
|
@ -21,8 +21,8 @@ app.get('/', hoewerkt);
|
|||
app.get('/:article', hoewerkt);
|
||||
app.get('/:article/:difficulty', hoewerkt);
|
||||
|
||||
function start(port) {
|
||||
app.listen(port);
|
||||
function start(port, host) {
|
||||
app.listen(port, host);
|
||||
}
|
||||
|
||||
module.exports = start;
|
||||
|
|
Loading…
Reference in a new issue