Files
discordeno/src/helpers/misc/get_gateway_bot.ts
T
2021-05-04 12:38:54 +02:00

9 lines
390 B
TypeScript

import { rest } from "../../rest/rest.ts";
import type { GetGatewayBot } from "../../types/gateway/get_gateway_bot.ts";
import { endpoints } from "../../util/constants.ts";
/** Get the bots Gateway metadata that can help during the operation of large or sharded bots. */
export async function getGatewayBot() {
return await rest.runMethod<GetGatewayBot>("get", endpoints.GATEWAY_BOT);
}