aboutsummaryrefslogtreecommitdiffstats
path: root/lib/caldav/http/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/caldav/http/index.js')
-rw-r--r--lib/caldav/http/index.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/caldav/http/index.js b/lib/caldav/http/index.js
new file mode 100644
index 0000000..dde939d
--- /dev/null
+++ b/lib/caldav/http/index.js
@@ -0,0 +1,14 @@
+(function(module, ns) {
+
+ module.exports = {
+ BasicAuth: ns.require('http/basic_auth'),
+ OAuth2: ns.require('http/oauth2')
+ };
+
+}.apply(
+ this,
+ (this.Caldav) ?
+ [Caldav('http'), Caldav] :
+ [module, require('../caldav')]
+));
+