0.1.0 • Published 10 years ago

ee-soa-discovery v0.1.0

Weekly downloads
5
License
-
Repository
github
Last release
10 years ago

ee-soa-discovery

Basic SOA Discovery implementation. Discovery implementations shoud inherit from this class

installation

npm install ee-soa-discovery

build status

Build 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) {

	}
});