aboutsummaryrefslogtreecommitdiffstats
path: root/lib/caldav/request/index.js
blob: 6790fd1c6a89a5e5f203cda461efb0644a9b0a21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(function(module, ns) {

  module.exports = {
    Abstract: ns.require('request/abstract'),
    CalendarQuery: ns.require('request/calendar_query'),
    Propfind: ns.require('request/propfind'),
    CalendarHome: ns.require('request/calendar_home')
  };

}.apply(
  this,
  (this.Caldav) ?
    [Caldav('request'), Caldav] :
    [module, require('../caldav')]
));