mirror of
https://github.com/zoriya/vex.git
synced 2026-08-16 02:44:55 +00:00
29 lines
407 B
Go
29 lines
407 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Feed struct {
|
|
id string
|
|
name string
|
|
url string
|
|
faviconUrl string
|
|
tags []string
|
|
}
|
|
|
|
type Entry struct {
|
|
id string
|
|
title string
|
|
content string
|
|
link string
|
|
date time.Time
|
|
|
|
author *string // author not always specified
|
|
isRead bool
|
|
isBookmarked bool
|
|
isIgnored bool
|
|
isReadLater bool
|
|
feed Feed
|
|
}
|