fix error
Some checks failed
Deploy Backend / docker (ubuntu-latest) (push) Failing after 34s
Deploy Website / docker (ubuntu-latest) (push) Failing after 32s

This commit is contained in:
Lee
2024-10-25 21:32:59 +01:00
parent 97fba47fd8
commit f20d83a436
6 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
import { SSRCache } from "@ssr/common/cache";
import { InternalServerError } from "../error/internal-server-error";
import { InternalServerError } from "@ssr/common/error/internal-server-error";
import { isProduction } from "@ssr/common/utils/utils";
/**

View File

@ -1,10 +0,0 @@
import { HttpCode } from "../common/http-codes";
export class InternalServerError extends Error {
constructor(
public message: string = "internal-server-error",
public status: number = HttpCode.INTERNAL_SERVER_ERROR.code
) {
super(message);
}
}

View File

@ -1,10 +0,0 @@
import { HttpCode } from "../common/http-codes";
export class NotFoundError extends Error {
constructor(
public message: string = "not-found",
public status: number = HttpCode.NOT_FOUND.code
) {
super(message);
}
}

View File

@ -1,10 +0,0 @@
import { HttpCode } from "../common/http-codes";
export class RateLimitError extends Error {
constructor(
public message: string = "rate-limited",
public status: number = HttpCode.TOO_MANY_REQUESTS.code
) {
super(message);
}
}

View File

@ -1,9 +1,9 @@
import { PlayerDocument, PlayerModel } from "@ssr/common/model/player";
import { NotFoundError } from "../error/not-found-error";
import { NotFoundError } from "@ssr/common/error/not-found-error";
import { getDaysAgoDate, getMidnightAlignedDate } from "@ssr/common/utils/time-utils";
import { scoresaberService } from "@ssr/common/service/impl/scoresaber";
import ScoreSaberPlayerToken from "@ssr/common/types/token/scoresaber/score-saber-player-token";
import { InternalServerError } from "../error/internal-server-error";
import { InternalServerError } from "@ssr/common/error/internal-server-error";
import { formatPp } from "@ssr/common/utils/number-utils";
import { delay, getPageFromRank, isProduction } from "@ssr/common/utils/utils";
import { DiscordChannels, logToChannel } from "../bot/bot";