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