feature/share-libs
js 5 lines 211 Bytes
Raw
1 // Load all the channels within this directory and all subdirectories.
2 // Channel files must be named *_channel.js.
3
4 const channels = require.context('.', true, /_channel\.js$/)
5 channels.keys().forEach(channels)