irl testing pass

This commit is contained in:
41666 2025-03-26 14:03:50 -07:00
parent dfbb9e2bca
commit 02f5075d3b
5 changed files with 21 additions and 8 deletions

View file

@ -13,14 +13,14 @@ import (
type Interactions struct {
PublicKey ed25519.PublicKey
Guilds discord.IGuildService
Guilds *discord.GuildService
Router *InteractionRouter
// if interactions are able to be used
OK bool
}
func NewInteractions(publicKey string, guildsService discord.IGuildService) *Interactions {
func NewInteractions(publicKey string, guildsService *discord.GuildService) *Interactions {
return &Interactions{
PublicKey: ed25519.PublicKey(publicKey),
Guilds: guildsService,