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

  function Abstract() {

  }

  module.exports = Abstract;

}.apply(
  this,
  (this.Webcals) ?
    [Webcals('request/abstract'), Webcals] :
    [module, require('../webcals')]
));