refactor: use path alias to improve readability

This commit is contained in:
syuilo 2021-08-19 22:04:15 +09:00
parent 6d881d4570
commit 97f2675d40
55 changed files with 92 additions and 92 deletions

View file

@ -9,7 +9,7 @@ import autobind from 'autobind-decorator';
import Logger from '../logger';
import { Schema } from '@/misc/schema';
import { EntitySchema, getRepository, Repository, LessThan, Between } from 'typeorm';
import { dateUTC, isTimeSame, isTimeBefore, subtractTime, addTime } from '../../prelude/time';
import { dateUTC, isTimeSame, isTimeBefore, subtractTime, addTime } from '@/prelude/time';
import { getChartInsertLock } from '@/misc/app-lock';
const logger = new Logger('chart', 'white', process.env.NODE_ENV !== 'test');