var event_api = function(){
|
|
};
|
|
|
|
event_api.prototype.stream = function(start, end, callback, options){
|
|
|
|
};
|
|
|
|
event_api.prototype.get_event = function(id, callback){
|
|
|
|
};
|
|
|
|
|
|
event_api.prototype.add_event = function(){
|
|
|
|
};
|
|
|
|
event_api.prototype.add_comment = function(){
|
|
|
|
};
|
|
|
|
event_api.prototype.update_comment = function(){
|
|
|
|
};
|
|
|
|
event_api.prototype.delete_comment = function(){
|
|
|
|
};
|
|
|
|
|
|
return module.exports = event_api;
|