This commit is contained in:
gitGnome
2026-04-05 16:24:06 +02:00
parent f38b130c8f
commit 7f54cc7a40
4 changed files with 20 additions and 18 deletions
+5 -4
View File
@@ -19,10 +19,11 @@ type User struct {
}
type Connection struct {
CreatedAt time.Time `json:"createdAt"`
With uint32 `json:"-"`
IsFromUser bool `json:"isFromUser"`
IsAccepted bool `json:"isAccepted"`
CreatedAt time.Time `json:"createdAt"`
Id uint32 `json:"id"`
RequestorId uint32 `json:"requestorId"`
RecipientId uint32 `json:"recipientId"`
MessagesBuf
}
type Group struct {