update ./ to @/ relative
This commit is contained in:
parent
62dcb0f297
commit
42f5ef5f96
2 changed files with 2 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
||||||
import { environment } from "@config/environment";
|
import { environment } from "@config/environment";
|
||||||
|
import { timestampToReadable } from "@helpers/char";
|
||||||
import type { Stats } from "fs";
|
import type { Stats } from "fs";
|
||||||
import {
|
import {
|
||||||
createWriteStream,
|
createWriteStream,
|
||||||
|
@ -10,8 +11,6 @@ import {
|
||||||
import { EOL } from "os";
|
import { EOL } from "os";
|
||||||
import { basename, join } from "path";
|
import { basename, join } from "path";
|
||||||
|
|
||||||
import { timestampToReadable } from "./char";
|
|
||||||
|
|
||||||
class Logger {
|
class Logger {
|
||||||
private static instance: Logger;
|
private static instance: Logger;
|
||||||
private static log: string = join(__dirname, "../../logs");
|
private static log: string = join(__dirname, "../../logs");
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { logger } from "@helpers/logger";
|
import { logger } from "@helpers/logger";
|
||||||
|
|
||||||
import { serverHandler } from "./server";
|
import { serverHandler } from "@/server";
|
||||||
|
|
||||||
async function main(): Promise<void> {
|
async function main(): Promise<void> {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Add table
Reference in a new issue