mirror of
https://github.com/TheRealOwenRees/plantid-discord-bot.git
synced 2026-07-22 20:16:57 +00:00
9 lines
183 B
Elixir
9 lines
183 B
Elixir
defmodule PlantIdDiscordBot.Guild do
|
|
alias Nostrum.Cache.GuildCache
|
|
|
|
def get_guild_name!(guild_id) do
|
|
%{name: guild_name} = GuildCache.get!(guild_id)
|
|
guild_name
|
|
end
|
|
end
|