Home Reference Source

src/layer.js


import run from './run';

/**
 * Core middleware functionality
 *
 * At this point only 'run' but others will follow
 */
export default {
  middleware: [
    run
  ],
  classes: []
};