Completed
Push — master ( 78b7d3...971ae6 )
by Thomas
49s queued 29s
created

module.exports.downloadHelper   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
nc 1
dl 0
loc 3
rs 10
nop 0
1
/*
2
 * Copyright (c) 2018 Includable.
3
 * Created by Thomas Schoffelen.
4
 */
5
6
module.exports = {
7
  create: function (kit, slug) {
8
    require('./create')(kit, slug)
9
  },
10
  run: function (containerToken, envr, silent) {
11
    require('./run')(containerToken, envr, silent)
12
  },
13
  reset: function () {
14
    require('./reset')()
15
  },
16
  downloadHelper: function () {
17
    require('./helper')()
18
  },
19
  upgrade: function () {
20
    require('./upgrade')()
21
  },
22
  plugins: {
23
    install: function (plugin) {
24
      require('./plugins/install')(plugin)
25
    },
26
    remove: function (plugin) {
27
      require('./plugins/remove')(plugin)
28
    },
29
    list: function () {
30
      require('./plugins/list')()
31
    }
32
  }
33
}
34