summary refs log tree commit diff
path: root/src/api/Server.ts
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-03-01 18:39:11 +1100
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-03-01 18:45:58 +1100
commitb9ffef87531ba7e3221a164e5203ad5b024b74db (patch)
tree302c38566293575b2948c9ab86d6c2c760d7ce04 /src/api/Server.ts
parentGenerate openapi (diff)
downloadserver-b9ffef87531ba7e3221a164e5203ad5b024b74db.tar.xz
Remove test client and client patcher
Diffstat (limited to 'src/api/Server.ts')
-rw-r--r--src/api/Server.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/api/Server.ts b/src/api/Server.ts

index aec47818..49229494 100644 --- a/src/api/Server.ts +++ b/src/api/Server.ts
@@ -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);