added create group route

This commit is contained in:
slawk0
2025-02-08 00:13:31 +01:00
parent 68873dc44c
commit bb67001839
4 changed files with 94 additions and 0 deletions

View File

@@ -36,3 +36,7 @@ type Message struct {
Sender string `json:"sender"`
AttachmentUrl *string `json:"attachment_url"`
}
type CreateGroupResponse struct {
GroupID uuid.UUID `json:"group_id"`
}