From cd2542e0fd8578f6e41114ffebbda1f16f7d04ce Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 2 Apr 2018 04:15:27 +0900 Subject: Refactor --- src/server/api/stream/othello-game.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/server/api/stream') 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 { -- cgit v1.2.3-freya