This commit is contained in:
syuilo
2018-07-07 19:21:54 +09:00
parent aa4ef6745a
commit d92044cf6a
13 changed files with 12 additions and 12 deletions

View File

@ -4,7 +4,7 @@ import Note from '../../../../../models/note';
import Watching from '../../../../../models/note-watching';
import watch from '../../../../../services/note/watch';
import { publishNoteStream } from '../../../../../stream';
import notify from '../../../../..//notify';
import notify from '../../../../../notify;
import { ILocalUser } from '../../../../../models/user';
/**

View File

@ -1,6 +1,6 @@
import * as websocket from 'websocket';
import * as redis from 'redis';
import * as CRC32 from 'crc-32';
import * as CRC32 from 'crc-32/types/types';
import ReversiGame, { pack } from '../../../models/games/reversi/game';
import { publishReversiGameStream } from '../../../stream';
import Reversi from '../../../games/reversi/core';

View File

@ -12,8 +12,8 @@ import * as glob from 'glob';
import * as yaml from 'js-yaml';
import ObjectContext from 'cafy/built/types/object';
import config from '../../config';
import I18n from '../../build/i18n';
import { fa } from '../../build/fa';
import I18n from '../../misc/i18n';
import { fa } from '../../misc/fa';
import { licenseHtml } from '../../build/license';
const constants = require('../../const.json');

View File

@ -12,7 +12,7 @@ import * as views from 'koa-views';
import docs from './docs';
import User from '../../models/user';
import parseAcct from '../../misc/acct/parse';
import { fa } from '../../build/fa';
import { fa } from '../../misc/fa';
import config from '../../config';
import Note, { pack as packNote } from '../../models/note';
import getNoteSummary from '../../misc/get-note-summary';