From 4bc0d9c9fc7dbca442a2de08d5ef256a793fec46 Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Sun, 12 Feb 2017 06:03:04 +0900
Subject: [PATCH] Revert "[Server] Fix bug"

This reverts commit d0f8634865be5ee1aa1c809e9f564f7aa1201d19.
---
 src/api/server.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/api/server.ts b/src/api/server.ts
index 976741ff7..390032f9a 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;