pili
Version:
Pili Streaming Cloud Server-Side Library For NodeJS
26 lines (18 loc) • 558 B
JavaScript
;
var Credentials = require('./credentials')
, API = require('./api');
function Hub(credentials, hub) {
this.credentials = credentials;
this.hub = hub;
API.init();
};
Hub.prototype.createStream = function(options, fn) {
API.createStream(this.credentials, this.hub, options, fn);
}
Hub.prototype.getStream = function(streamId, fn) {
API.getStream(this.credentials, streamId, fn);
}
Hub.prototype.listStreams = function(options, fn) {
API.listStreams(this.credentials, this.hub, options, fn);
}
module.exports = exports = Hub;