diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-11 09:11:32 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-11 09:11:32 +0900 |
| commit | 2ec25a7729e8d2fa6734bdf25ffb5a1b35ca2d5b (patch) | |
| tree | 8e50814af7140caf4c8ad9ec2f69a59b8bb88a23 /src/server/api/streaming.ts | |
| parent | wip (diff) | |
| download | sharkey-2ec25a7729e8d2fa6734bdf25ffb5a1b35ca2d5b.tar.gz sharkey-2ec25a7729e8d2fa6734bdf25ffb5a1b35ca2d5b.tar.bz2 sharkey-2ec25a7729e8d2fa6734bdf25ffb5a1b35ca2d5b.zip | |
wip
Diffstat (limited to 'src/server/api/streaming.ts')
| -rw-r--r-- | src/server/api/streaming.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/server/api/streaming.ts b/src/server/api/streaming.ts index e4156096ef..2d4cfc108f 100644 --- a/src/server/api/streaming.ts +++ b/src/server/api/streaming.ts @@ -14,7 +14,6 @@ import othelloGameStream from './stream/othello-game'; import othelloStream from './stream/othello'; import serverStatsStream from './stream/server-stats'; import notesStatsStream from './stream/notes-stats'; -import hashtagsStatsStream from './stream/hashtags-stats'; import requestsStream from './stream/requests'; import { ParsedUrlQuery } from 'querystring'; import authenticate from './authenticate'; @@ -40,11 +39,6 @@ module.exports = (server: http.Server) => { return; } - if (request.resourceURL.pathname === '/hashtags-stats') { - hashtagsStatsStream(request, connection); - return; - } - if (request.resourceURL.pathname === '/requests') { requestsStream(request, connection); return; |