Refactoring

This commit is contained in:
syuilo
2019-02-05 14:14:23 +09:00
parent 9b780dff04
commit 8129d4dc23
51 changed files with 68 additions and 68 deletions

View File

@ -2,7 +2,7 @@ import autobind from 'autobind-decorator';
import * as CRC32 from 'crc-32';
import * as mongo from 'mongodb';
import ReversiGame, { pack } from '../../../../../models/games/reversi/game';
import { publishReversiGameStream } from '../../../../../stream';
import { publishReversiGameStream } from '../../../../../services/stream';
import Reversi from '../../../../../games/reversi/core';
import * as maps from '../../../../../games/reversi/maps';
import Channel from '../../channel';

View File

@ -1,7 +1,7 @@
import autobind from 'autobind-decorator';
import * as mongo from 'mongodb';
import Matching, { pack } from '../../../../../models/games/reversi/matching';
import { publishMainStream } from '../../../../../stream';
import { publishMainStream } from '../../../../../services/stream';
import Channel from '../../channel';
export default class extends Channel {