aboutsummaryrefslogtreecommitdiffstats
path: root/lib/caldav/request/index.js
blob: fc49491c556b46abf5c5862eb61bb167fa13b9e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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')]
));