8 lines
233 B
Plaintext
8 lines
233 B
Plaintext
// if sockets are required for this project to function,
|
|
// this file will serve as the point of execution for the server
|
|
|
|
module.exports = (app) => {
|
|
app.listen(port, () => {
|
|
console.log("Listening on " + port);
|
|
})
|
|
} |