Versions in this module Expand all Collapse all v0 v0.0.1 Feb 24, 2019 Changes in this version + var ErrEmptyEventTitle = errors.New("Event Title must not be empty") + var ErrEmptyNewState = errors.New("Event NewState must not be empty") + var ErrEmptyPrevState = errors.New("Event PrevState must not be empty") + type Event struct + LastSeen time.Time + NewState string + PrevState string + Text string + Timestamp time.Time + Title string + func (e Event) Valid() error + type Hook string + func (h Hook) Dispatch(e Event)