summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsiddharth <s@ricketyspace.net>2021-11-28 21:51:09 -0500
committersiddharth <s@ricketyspace.net>2021-11-28 21:51:09 -0500
commitacc280fbbdee818c94b12cc4382266dbb734e8b5 (patch)
tree00c6031b0e44001a47e5dd1c064a3f1a37e1ec8e
parent04e902f718ed77e283162fe8316e27bff8656e9b (diff)
state: add EntryResult.EntryTitle
-rw-r--r--state/state.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/state/state.go b/state/state.go
index 109e4d1..4bfbf39 100644
--- a/state/state.go
+++ b/state/state.go
@@ -12,8 +12,9 @@ type FeedResult struct {
// Contains the result of processing an Entry.
type EntryResult struct {
- EntryId string // Entry's identifier
- Err error // Set on error
+ EntryId string // Entry's identifier
+ EntryTitle string // Entry's title
+ Err error // Set on error
}
type ProcessState struct {