summaryrefslogtreecommitdiff
path: root/src/api/server.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/server.ts')
-rw-r--r--src/api/server.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/server.ts b/src/api/server.ts
index 976741ff7a..390032f9a4 100644
--- a/src/api/server.ts
+++ b/src/api/server.ts
@@ -17,7 +17,6 @@ const app = express();
app.disable('x-powered-by');
app.set('etag', false);
-require('./service/github')(app);
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json({
type: ['application/json', 'text/plain']
@@ -62,6 +61,7 @@ app.use((req, res, next) => {
next();
});
+require('./service/github')(app);
require('./service/twitter')(app);
module.exports = app;