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