dashboard-v2/utils/discord/endpoints/guild/getGuildChannels.go
2019-05-25 23:25:00 +01:00

15 lines
275 B
Go

package guild
import (
"fmt"
"github.com/TicketsBot/GoPanel/utils/discord"
)
func GetGuildChannels(id int) discord.Endpoint {
return discord.Endpoint{
RequestType: discord.GET,
AuthorizationType: discord.BOT,
Endpoint: fmt.Sprintf("/guilds/%d/channels", id),
}
}