18 lines
295 B
Go
18 lines
295 B
Go
|
package model
|
||
|
|
||
|
import "github.com/google/uuid"
|
||
|
|
||
|
type FeedStatus string
|
||
|
|
||
|
const (
|
||
|
FeedStatusNew FeedStatus = "new"
|
||
|
FeedStatusReady FeedStatus = "ready"
|
||
|
)
|
||
|
|
||
|
type Feed struct {
|
||
|
ID uuid.UUID
|
||
|
Status FeedStatus
|
||
|
Title string
|
||
|
YoutubeChannelID YoutubeChannelID
|
||
|
}
|