6 lines
77 B
Go
6 lines
77 B
Go
package messaging
|
|
|
|
type Message = interface {
|
|
Serialize() ([]byte, error)
|
|
}
|