diff options
Diffstat (limited to 'src/server/api/stream')
| -rw-r--r-- | src/server/api/stream/othello-game.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/api/stream/othello-game.ts b/src/server/api/stream/othello-game.ts index b11915f8ff..00367a824e 100644 --- a/src/server/api/stream/othello-game.ts +++ b/src/server/api/stream/othello-game.ts @@ -3,8 +3,8 @@ import * as redis from 'redis'; import * as CRC32 from 'crc-32'; import OthelloGame, { pack } from '../../../models/othello-game'; import { publishOthelloGameStream } from '../../../common/event'; -import Othello from '../../../common/othello/core'; -import * as maps from '../../../common/othello/maps'; +import Othello from '../../../misc/othello/core'; +import * as maps from '../../../misc/othello/maps'; import { ParsedUrlQuery } from 'querystring'; export default function(request: websocket.request, connection: websocket.connection, subscriber: redis.RedisClient, user?: any): void { |