Files
full-stack-architecture/server/bin/www
Mikayla Dobson 5da024ef05 init commit
2022-07-08 12:00:48 -05:00

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);
})
}