1 package model 2 3 import "os" 4 5 // MessagePair is a pair of os.FileInfo, one for the message meta-data and the other is the message payload 6 type MessagePair struct { 7 Metadata os.FileInfo 8 Payload os.FileInfo 9 } 10
View as plain text