aboutsummaryrefslogtreecommitdiffstats
path: root/lib/caldav/request/index.js
diff options
context:
space:
mode:
authorJames Lal <james@lightsofapollo.com>2012-07-06 08:13:15 -0700
committerJames Lal <james@lightsofapollo.com>2012-07-06 08:13:15 -0700
commit20711f003e97a4a57d1e2838ba78a994c5faf6c0 (patch)
treeb060e5de05a9ffefc2ec836469c087fffa99dcef /lib/caldav/request/index.js
parentc8e85fe1e0a1d2e15df580068244324ff536a23a (diff)
downloadjsCalDAV-20711f003e97a4a57d1e2838ba78a994c5faf6c0.tar.gz
webcals -> caldav rename (yes, back again)
Diffstat (limited to 'lib/caldav/request/index.js')
-rw-r--r--lib/caldav/request/index.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/caldav/request/index.js b/lib/caldav/request/index.js
new file mode 100644
index 0000000..fc49491
--- /dev/null
+++ b/lib/caldav/request/index.js
@@ -0,0 +1,14 @@
+(function(module, ns) {
+
+ module.exports = {
+ Abstract: ns.require('request/abstract'),
+ CalendarQuery: ns.require('request/calendar_query'),
+ Propfind: ns.require('request/propfind')
+ };
+
+}.apply(
+ this,
+ (this.Caldav) ?
+ [Caldav('request'), Caldav] :
+ [module, require('../caldav')]
+));