summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsiddharth <s@ricketyspace.net>2021-11-28 21:50:37 -0500
committersiddharth <s@ricketyspace.net>2021-11-28 21:50:37 -0500
commit04e902f718ed77e283162fe8316e27bff8656e9b (patch)
treeb233a04b9e5c45c53abb29854116bbe8302f2c97
parent7defbcb1d9ed71d09c9f987ffa3df2f3e398e19a (diff)
state: add Feed.FeedResult
-rw-r--r--state/state.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/state/state.go b/state/state.go
index 8ad12e3..109e4d1 100644
--- a/state/state.go
+++ b/state/state.go
@@ -5,8 +5,9 @@ package state
// Contains the result of processing a Feed.
type FeedResult struct {
- FeedId string // Feed's identifier
- Err error // Set on error
+ FeedId string // Feed's identifier
+ FeedResult string // Feed result
+ Err error // Set on error
}
// Contains the result of processing an Entry.