From 91429fbc40a47da1fb11f972868e4db1008178a7 Mon Sep 17 00:00:00 2001 From: Michael DeBonis Date: Fri, 7 Jul 2017 13:10:33 -0500 Subject: [PATCH] Checkpoint --- index.js | 2 ++ lib/modules/index.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/index.js b/index.js index b9ab855..f89818a 100644 --- a/index.js +++ b/index.js @@ -9,6 +9,7 @@ const { users, posts, directChannels, + directPosts, end } = modules @@ -19,6 +20,7 @@ start(context) .then(users) .then(posts) .then(directChannels) + .then(directPosts) .then(end) .catch(function(err) { console.error(err) diff --git a/lib/modules/index.js b/lib/modules/index.js index 7bbb1e0..1e036ee 100644 --- a/lib/modules/index.js +++ b/lib/modules/index.js @@ -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 = { @@ -15,5 +16,6 @@ module.exports = { users, posts, directChannels, + directPosts, end }