A Message is used to send messages within the MessageManager
| 28 | |
| 29 | // A Message is used to send messages within the MessageManager |
| 30 | type Message interface { |
| 31 | Type() string |
| 32 | } |
| 33 | |
| 34 | // MessageManager manages messages and subscribed handlers |
| 35 | type MessageManager struct { |
no outgoing calls
no test coverage detected