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-game.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-game.ts')
| -rw-r--r-- | src/server/api/stream/othello-game.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/api/stream/othello-game.ts b/src/server/api/stream/othello-game.ts index 6eb610331c..841e542610 100644 --- a/src/server/api/stream/othello-game.ts +++ b/src/server/api/stream/othello-game.ts @@ -2,7 +2,7 @@ import * as websocket from 'websocket'; import * as redis from 'redis'; import * as CRC32 from 'crc-32'; import OthelloGame, { pack } from '../../../models/othello-game'; -import { publishOthelloGameStream } from '../../../event'; +import { publishOthelloGameStream } from '../../../publishers/stream'; import Othello from '../../../othello/core'; import * as maps from '../../../othello/maps'; import { ParsedUrlQuery } from 'querystring'; |