1
0
Fork 0
forked from External/ergo

apply go1.19 gofmt

This commit is contained in:
Shivaram Lingamneni 2022-08-03 00:54:50 -04:00
parent 096c12fb52
commit 5b72cd8622
4 changed files with 16 additions and 10 deletions

View file

@ -22,9 +22,12 @@ type MessagePair struct {
// SplitMessage represents a message that's been split for sending.
// Two possibilities:
// (a) Standard message that can be relayed on a single 512-byte line
// (MessagePair contains the message, Split == nil)
//
// (MessagePair contains the message, Split == nil)
//
// (b) multiline message that was split on the client side
// (Message == "", Split contains the split lines)
//
// (Message == "", Split contains the split lines)
type SplitMessage struct {
Message string
Msgid string