package transport type IncomingMessage struct { Sender ClientId Content Content } type OutgoingMessage struct { Recipient ClientId Content Content } type Content struct { Source *string Command string Arguments []string }