Files
contentplatform/events.go
2019-01-16 04:19:11 +01:00

11 lines
143 B
Go

package main
type Event struct {
Name string
Callback func(params ...interface{})
}
type EventHandler struct {
EventC <-chan *Event
}