()
| 21 | // Envelope defines the interface for content that can be broadcast to clients. |
| 22 | Envelope interface { |
| 23 | String() string // Represent the envelope contents as a string for transmission. |
| 24 | } |
| 25 | |
| 26 | // Manager defines the interface for managing clients and broadcasting messages. |
no outgoing calls