Files
dislate/internals/discord/bot/events/events.go
2024-08-26 11:16:26 -03:00

10 lines
128 B
Go

package events
import (
dgo "github.com/bwmarrin/discordgo"
)
type EventHandler[E any] interface {
Serve(*dgo.Session, E)
}