#7 - saving feed, but without content

This commit is contained in:
2025-03-11 13:57:16 +02:00
parent 5a7fac748b
commit e89bfba392
6 changed files with 140 additions and 0 deletions

View File

@@ -10,6 +10,15 @@ import (
"github.com/google/uuid"
)
type Feed struct {
ID uuid.UUID
CreatedAt time.Time
UpdatedAt time.Time
Name string
Url string
UserID uuid.UUID
}
type User struct {
ID uuid.UUID
CreatedAt time.Time