Skip to content

Commit

Permalink
Checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
mkdbns committed Jul 7, 2017
1 parent 560c375 commit 91429fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const {
users,
posts,
directChannels,
directPosts,
end
} = modules

Expand All @@ -19,6 +20,7 @@ start(context)
.then(users)
.then(posts)
.then(directChannels)
.then(directPosts)
.then(end)
.catch(function(err) {
console.error(err)
Expand Down
2 changes: 2 additions & 0 deletions lib/modules/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const channels = require('./channels')
const users = require('./users')
const posts = require('./posts')
const directChannels = require('./directChannels')
const directPosts = require('./directPosts')
const end = require('./end')

module.exports = {
Expand All @@ -15,5 +16,6 @@ module.exports = {
users,
posts,
directChannels,
directPosts,
end
}

0 comments on commit 91429fb

Please sign in to comment.