Remove test client and client patcher

This commit is contained in:
Madeline
2023-03-01 18:39:11 +11:00
parent 358494b844
commit b9ffef8753
6 changed files with 0 additions and 293 deletions
-2
View File
@@ -36,7 +36,6 @@ import { Authentication, CORS } from "./middlewares/";
import { BodyParser } from "./middlewares/BodyParser";
import { ErrorHandler } from "./middlewares/ErrorHandler";
import { initRateLimits } from "./middlewares/RateLimit";
import TestClient from "./middlewares/TestClient";
import { initTranslation } from "./middlewares/Translation";
import { initInstance } from "./util/handlers/Instance";
@@ -128,7 +127,6 @@ export class FosscordServer extends Server {
app.use("/api", api); // allow unversioned requests
this.app.use(ErrorHandler);
TestClient(this.app);
Sentry.errorHandler(this.app);