Created
June 20, 2012 21:39
-
-
Save motiooon/2962407 to your computer and use it in GitHub Desktop.
require modules
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Start all services by requiring the app.js and therefore executing the code within | |
module.exports.initialize = function(){ | |
require('./ACCOUNTS/app.js'); | |
require('./COLLECTIONS/app.js'); | |
require('./IMAGE_PROCESSING/app.js'); | |
require('./MEDIA/app.js'); | |
require('./PAYMENTS/app.js'); | |
require('./SEARCH/app.js'); | |
require('./STORAGE/app.js'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment