diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-19 22:04:15 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-08-19 22:04:15 +0900 |
| commit | 97f2675d404eb073a447ea9b3c7678b5e560a095 (patch) | |
| tree | 4c34db4ef21b22700e5ebfc22139bd8d423649ed /src/boot | |
| parent | fix import (diff) | |
| download | sharkey-97f2675d404eb073a447ea9b3c7678b5e560a095.tar.gz sharkey-97f2675d404eb073a447ea9b3c7678b5e560a095.tar.bz2 sharkey-97f2675d404eb073a447ea9b3c7678b5e560a095.zip | |
refactor: use path alias to improve readability
Diffstat (limited to 'src/boot')
| -rw-r--r-- | src/boot/master.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/master.ts b/src/boot/master.ts index 4cd91dc66a..03a28c339b 100644 --- a/src/boot/master.ts +++ b/src/boot/master.ts @@ -7,7 +7,7 @@ import { getConnection } from 'typeorm'; import Logger from '@/services/logger'; import loadConfig from '@/config/load'; import { Config } from '@/config/types'; -import { lessThan } from '../prelude/array'; +import { lessThan } from '@/prelude/array'; import { program } from '../argv'; import { showMachineInfo } from '@/misc/show-machine-info'; import { initDb } from '../db/postgre'; |