Files

11 lines
137 B
Go
Raw Permalink Normal View History

package errors
type EventErr interface {
Error() string
Event() string
Reply() error
Send() error
Log()
Join(...error) EventErr
}