ee-soa-discovery
v0.1.0
Published
Basic SOA Discovery implementation
Readme
ee-soa-discovery
Basic SOA Discovery implementation. Discovery implementations shoud inherit from this class
installation
npm install ee-soa-discoverybuild status
usage
Let your discovery implementaion inherit from this class. Overwrite the «discover» Method.
var SOADiscovery = require('ee-soa-discovery')
, Class = require('ee-class');
var MyDiscovery = new Class({
inherits: SOADiscovery
, discover: function(application, service, callback) {
}
});
