type User struct {
ID string `json:"id"`
Username string `json:"username"`
Email string `json:"email"`
Password string `json:"password"` // Store as a hash Profile string `json:"profile"` // URL to the profile picture Bio string `json:"bio"`
}
type Video struct {
ID string `json:"id"`
UserID string `json:"userId"`
Title string `json:"title"`
Description string `json:"description"`
URL string `json:"url"` // URL to the video file Thumbnail string `json:"thumbnail"` // URL to the thumbnail image Timestamp time.Time `json:"timestamp"`
}