package message type Sender interface { Send(string) error Receive() ([]Message, error) } type Message struct { Sender string Content string }