Add list all feeds

This commit is contained in:
2024-05-04 18:41:47 +02:00
parent 4f1a4c41e5
commit 31077f9fb5
7 changed files with 74 additions and 23 deletions
+4 -4
View File
@@ -7,10 +7,10 @@ import (
)
type User struct {
Id uuid.UUID
Name string
Email string
Password []byte
Id uuid.UUID `json:"id"`
Name string `json:"name"`
Email string `json:"email"`
Password []byte `json:"-"`
}
type UserService struct {