package client import "time" type Content struct { Subject []byte Body []byte } type RecievedMessage struct { FromUID string ToUID string Content Content Timestamp time.Time }