1 package model 2 3 import "github.com/google/uuid" 4 5 type MessageData struct { 6 ID uuid.UUID 7 Type string 8 Payload []byte 9 } 10
View as plain text