1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-02 19:05:55 +02:00
This commit is contained in:
syuilo
2018-06-11 09:11:32 +09:00
parent dc3c80e3ce
commit 2ec25a7729
10 changed files with 185 additions and 43 deletions

View File

@@ -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;