18 lines
240 B
Go
18 lines
240 B
Go
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
|
|
}
|