diff options
author | siddharth <s@ricketyspace.net> | 2021-11-28 21:51:09 -0500 |
---|---|---|
committer | siddharth <s@ricketyspace.net> | 2021-11-28 21:51:09 -0500 |
commit | acc280fbbdee818c94b12cc4382266dbb734e8b5 (patch) | |
tree | 00c6031b0e44001a47e5dd1c064a3f1a37e1ec8e /state | |
parent | 04e902f718ed77e283162fe8316e27bff8656e9b (diff) |
state: add EntryResult.EntryTitle
Diffstat (limited to 'state')
-rw-r--r-- | state/state.go | 5 |
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 { |