mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-01 00:10:07 +00:00
10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
import { assertExists } from "../../deps.ts";
|
|
import { bot } from "../../mod.ts";
|
|
|
|
export async function getAuditLogsTests(guildId: bigint) {
|
|
const logs = await bot.helpers.getAuditLogs(guildId);
|
|
|
|
// Assertions
|
|
assertExists(logs);
|
|
}
|