server: reduce message output, only show channel ID instead of full channel object

This commit is contained in:
2026-06-02 03:01:21 +00:00
parent 0f0f2062a3
commit 2efe08b247
3 changed files with 13 additions and 13 deletions
+5 -5
View File
@@ -13,11 +13,11 @@ import (
)
type Message struct {
ID uuid.UUID
Channel Channel
Created time.Time
Content string
Audio File
ID uuid.UUID
ChannelID uuid.UUID
Created time.Time
Content string
Audio File
}
type MessagePayload struct {