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
toast c4ddf77a7b
All checks were successful
Build and push container image / build (push) Successful in 41s
Upload the rest of files
2023-10-20 09:08:38 +11:00

12 lines
270 B
Go

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
}