diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-04-02 13:35:46 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-02 13:35:46 +0900 |
| commit | fc5284e9aa709dcda4799e6c0f4e445d138c4914 (patch) | |
| tree | 7a417a3bb5cfde837afa5bde0de2c1756b053e2b /src/server/api/stream/othello.ts | |
| parent | Merge pull request #1363 from akihikodaki/misc (diff) | |
| parent | Introduce publishers directory (diff) | |
| download | misskey-fc5284e9aa709dcda4799e6c0f4e445d138c4914.tar.gz misskey-fc5284e9aa709dcda4799e6c0f4e445d138c4914.tar.bz2 misskey-fc5284e9aa709dcda4799e6c0f4e445d138c4914.zip | |
Merge pull request #1364 from akihikodaki/misc
Introduce publishers directory
Diffstat (limited to 'src/server/api/stream/othello.ts')
| -rw-r--r-- | src/server/api/stream/othello.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/api/stream/othello.ts b/src/server/api/stream/othello.ts index 4c292056da..fa62b05836 100644 --- a/src/server/api/stream/othello.ts +++ b/src/server/api/stream/othello.ts @@ -2,7 +2,7 @@ import * as mongo from 'mongodb'; import * as websocket from 'websocket'; import * as redis from 'redis'; import Matching, { pack } from '../../../models/othello-matching'; -import publishUserStream from '../../../event'; +import publishUserStream from '../../../publishers/stream'; export default function(request: websocket.request, connection: websocket.connection, subscriber: redis.RedisClient, user: any): void { // Subscribe othello stream |