bouquins/lib/endpoint/library.js

11 lines
218 B
JavaScript
Raw Normal View History

2014-01-20 19:30:45 +00:00
/**
* Endpoint library.
*/
var Endpoint = require('./endpoint.js');
function Library() {
Endpoint.call(this);
}
Library.prototype = Object.create(Endpoint.prototype, {
});
exports = module.exports = new Library();