summary refs log tree commit diff
path: root/api/src/routes/gateway
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/routes/gateway')
-rw-r--r--api/src/routes/gateway/bot.ts40
-rw-r--r--api/src/routes/gateway/index.ts24
2 files changed, 0 insertions, 64 deletions
diff --git a/api/src/routes/gateway/bot.ts b/api/src/routes/gateway/bot.ts
deleted file mode 100644

index f1dbb9df..00000000 --- a/api/src/routes/gateway/bot.ts +++ /dev/null
@@ -1,40 +0,0 @@ -import { Config } from "@fosscord/util"; -import { Router, Response, Request } from "express"; -import { route, RouteOptions } from "@fosscord/api"; - -const router = Router(); - -export interface GatewayBotResponse { - url: string; - shards: number; - session_start_limit: { - total: number; - remaining: number; - reset_after: number; - max_concurrency: number; - }; -} - -const options: RouteOptions = { - test: { - response: { - body: "GatewayBotResponse" - } - } -}; - -router.get("/", route(options), (req: Request, res: Response) => { - const { endpointPublic } = Config.get().gateway; - res.json({ - url: endpointPublic || process.env.GATEWAY || "ws://localhost:3002", - shards: 1, - session_start_limit: { - total: 1000, - remaining: 999, - reset_after: 14400000, - max_concurrency: 1 - } - }); -}); - -export default router; diff --git a/api/src/routes/gateway/index.ts b/api/src/routes/gateway/index.ts deleted file mode 100644
index 9bad7478..00000000 --- a/api/src/routes/gateway/index.ts +++ /dev/null
@@ -1,24 +0,0 @@ -import { Config } from "@fosscord/util"; -import { Router, Response, Request } from "express"; -import { route, RouteOptions } from "@fosscord/api"; - -const router = Router(); - -export interface GatewayResponse { - url: string; -} - -const options: RouteOptions = { - test: { - response: { - body: "GatewayResponse" - } - } -}; - -router.get("/", route(options), (req: Request, res: Response) => { - const { endpointPublic } = Config.get().gateway; - res.json({ url: endpointPublic || process.env.GATEWAY || "ws://localhost:3002" }); -}); - -export default router;