UNPKG
pitlab
Version:
latest (0.1.0)
0.1.0
GitLab integration with PivotalTracker
swhite24/pitlab
pitlab
/
lib
/
index.js
15 lines
(14 loc)
•
293 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/** * lib/index.js * Batch requires all models * * (C) Ensequence 2013 */
// ### Exports
module
.
exports
=
function
(
config
) {
return
{
gitlab
:
require
(
'./gitlab'
)(config),
pivotal
:
require
(
'./pivotal'
)(config),
PitlabError
:
require
(
'./pitlab-error'
) }; };