diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-05 14:14:23 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-05 14:14:23 +0900 |
| commit | 8129d4dc2366aea07da60e21abe3440230387bfe (patch) | |
| tree | a3df66c5b7b80db69f79b62f0af0d9c5ae2eab12 /src/server/api/stream/channels | |
| parent | Fix log (diff) | |
| download | sharkey-8129d4dc2366aea07da60e21abe3440230387bfe.tar.gz sharkey-8129d4dc2366aea07da60e21abe3440230387bfe.tar.bz2 sharkey-8129d4dc2366aea07da60e21abe3440230387bfe.zip | |
Refactoring
Diffstat (limited to 'src/server/api/stream/channels')
| -rw-r--r-- | src/server/api/stream/channels/games/reversi-game.ts | 2 | ||||
| -rw-r--r-- | src/server/api/stream/channels/games/reversi.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/server/api/stream/channels/games/reversi-game.ts b/src/server/api/stream/channels/games/reversi-game.ts index 1cb077c8c4..87df9e194c 100644 --- a/src/server/api/stream/channels/games/reversi-game.ts +++ b/src/server/api/stream/channels/games/reversi-game.ts @@ -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'; diff --git a/src/server/api/stream/channels/games/reversi.ts b/src/server/api/stream/channels/games/reversi.ts index b40709617b..1b1ad187a3 100644 --- a/src/server/api/stream/channels/games/reversi.ts +++ b/src/server/api/stream/channels/games/reversi.ts @@ -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 { |