From d304f3b3192a5e14596bdabed39c4d47084a1505 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Mon, 3 Mar 2025 23:51:05 +0800 Subject: [PATCH] :sparkles: Add keypair capability into message body --- pkg/internal/models/events.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/internal/models/events.go b/pkg/internal/models/events.go index 50b08c4..79628b3 100644 --- a/pkg/internal/models/events.go +++ b/pkg/internal/models/events.go @@ -30,6 +30,7 @@ type Event struct { type EventMessageBody struct { Text string `json:"text,omitempty"` + KeyPair string `json:"keypair_id,omitempty"` Algorithm string `json:"algorithm,omitempty"` Attachments []string `json:"attachments,omitempty"` QuoteEventID *uint `json:"quote_event,omitempty"`