aaronbullard/node-di-bootstrap

View on GitHub
src/Subscribers/ExampleSubscriber.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function(Container){

    function ExampleSubscriber(){

        this.whenExampleEvent = function(event)
        {
            // Do something with event
            // console.log(event);
        }

    }// end ExampleSubscriber

    return ExampleSubscriber;
}