Gottwik/Enduro

View on GitHub
scaffolding/intro/app/app.js

Summary

Maintainability
A
0 mins
Test Coverage
const local_app = function () {}

// * ———————————————————————————————————————————————————————— * //
// *     init
// *
// *    gets called upon starting enduro.js production server
// *    @param {express app} app - express app
// *    @return {nothing}
// * ———————————————————————————————————————————————————————— * //
local_app.prototype.init = function (app) {
    // express app available here
    // don't forget these routes will be available on production server server (defaults to localhost:5000)
}

module.exports = new local_app()