From f75512375cf79936deaf204d17b7fe98525201a7 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Wed, 4 Feb 2015 22:59:31 -0500 Subject: [PATCH] actually expose the downtime api --- lib/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index 28e0784..7cfc672 100644 --- a/lib/index.js +++ b/lib/index.js @@ -11,6 +11,7 @@ var metric_api = require('./api/metric.js'); var search_api = require('./api/search.js'); var service_check_api = require('./api/service_check.js'); var snapshot_api = require('./api/snapshot.js'); +var downtime_api = require('./api/downtime.js'); var dogapi = function(options){ @@ -27,7 +28,8 @@ extend(dogapi.prototype, metric_api.prototype, search_api.prototype, service_check_api.prototype, - snapshot_api.prototype); + snapshot_api.prototype, + downtime_api.prototype); dogapi.constants = constants;