This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
Corn-Utility/toolbox/guildManager.go

12 lines
270 B
Go
Raw Normal View History

2023-10-19 18:08:38 -04:00
package toolbox
import (
"github.com/disgoorg/disgo/rest"
"github.com/disgoorg/snowflake/v2"
)
func RESTGuild_Name(ID snowflake.ID, BotToken string) string {
guild, _ := rest.Guilds.GetGuild(rest.NewGuilds(rest.NewClient(BotToken)), ID, false)
return guild.Name
}