(commandName: string)
| 42 | } |
| 43 | |
| 44 | export function getLiveCommand(commandName: string) { |
| 45 | return LIVE_COMMANDS.find(cmd => cmd.name === commandName); |
| 46 | } |
| 47 | |
| 48 | export async function getGuild(guildId: string) { |
| 49 | return await CLIENT.guilds.fetch(guildId); |
nothing calls this directly
no outgoing calls
no test coverage detected