mirror of
https://github.com/zoriya/vex.git
synced 2026-05-20 05:46:38 +00:00
13 lines
300 B
Go
13 lines
300 B
Go
package vex
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type Feed struct {
|
|
Id uuid.UUID `json:"id"`
|
|
Name string `json:"name"`
|
|
Link string `json:"link"`
|
|
FaviconUrl string `json:"faviconUrl"`
|
|
Tags []string `json:"tags"`
|
|
SubmitterId uuid.UUID `json:"submitterId"`
|
|
}
|