This commit is contained in:
lfirmin
2026-05-10 18:07:51 +02:00
parent 50af2452b1
commit a5f888b3c1
59 changed files with 6682 additions and 108 deletions
+14
View File
@@ -0,0 +1,14 @@
package panel
import (
"github.com/leolionad58/ticketbot/internal/panel/handlers"
)
// BotService is the interface the panel calls into the live bot.
type BotService interface {
GetBotStatus() handlers.BotStatus
SendPanel(panelID int64) error
DeletePanelMessage(panelID int64) error
CreateConvocation(guildID, staffDiscordID, targetDiscordID, reason string) (channelID string, err error)
SendConvocPanel(guildID string) error
}