fix: format code with gofmt

This commit is contained in:
2026-08-30 09:46:58 -07:00
parent a8ed507198
commit da6ea54c96
6 changed files with 27 additions and 27 deletions
+12 -12
View File
@@ -12,22 +12,22 @@ const MaxMessageBodyBytes = 256 * 1024
// Message is a received message, decoupled from the generated protobuf type.
type Message struct {
MessageID string
ReceiptHandle string
Body []byte
Attributes map[string]string
ReceiveCount int32
MessageGroupID string
MessageID string
ReceiptHandle string
Body []byte
Attributes map[string]string
ReceiveCount int32
MessageGroupID string
}
// SendMessageInput is the input to SendMessage.
type SendMessageInput struct {
QueueName string
Body []byte
Attributes map[string]string
MessageGroupID string // FIFO only
MessageDeduplicationID string // FIFO only
DelaySeconds int32
QueueName string
Body []byte
Attributes map[string]string
MessageGroupID string // FIFO only
MessageDeduplicationID string // FIFO only
DelaySeconds int32
}
// SendMessageOutput is the result of a successful SendMessage call.