Browse Source

:gear: Make message annotations map[string]interface{}

mudler 3 years ago
parent
commit
83af4edc10
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pkg/hub/message.go

+ 1 - 1
pkg/hub/message.go

@@ -20,7 +20,7 @@ type Message struct {
 	Message  string
 	SenderID string
 
-	Annotations map[string]string
+	Annotations map[string]interface{}
 }
 
 type MessageOption func(cfg *Message) error