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

  module.exports = {
    Calendar: ns.require('resources/calendar')
  };

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