toast
c4ddf77a7b
All checks were successful
Build and push container image / build (push) Successful in 41s
12 lines
270 B
Go
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
|
|
}
|