summaryrefslogtreecommitdiffstats
path: root/controllers/load.js
blob: a60bbe3e63c88205ce6e44cab8108b94a2faa32d (plain)
1
2
3
4
5
6
7
8
9
var fs = require('fs');

fs.readdirSync(__dirname)
  .filter(function(file) {
    return (file.indexOf('.') !== 0) && (file !== 'load.js')
  })
  .forEach(function(file) {
    module.exports[file.replace(/\.js$/, '')] = require('./' + file);
  });