summaryrefslogtreecommitdiffstats
path: root/state
diff options
context:
space:
mode:
authorsiddharth <s@ricketyspace.net>2021-11-29 21:13:32 -0500
committersiddharth <s@ricketyspace.net>2021-11-29 21:13:32 -0500
commitf79f656ca9d7bb6f96bc4196fdbcd3a691147c77 (patch)
tree7926088e230c0f0b70c660a812f9c9be7b92c720 /state
parente45715e188255f03107187eb9af103d7b81c9a06 (diff)
state: update ProcessState
Remove FeedsProcessing. Use a local variable to track the feeds that are being processed instead in the `main` function.
Diffstat (limited to 'state')
-rw-r--r--state/state.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/state/state.go b/state/state.go
index b8a48d4..c43071b 100644
--- a/state/state.go
+++ b/state/state.go
@@ -25,8 +25,6 @@ type ProcessState struct {
// caller about the number of entries that are being
// downloaded for a feed.
FeedResultChan chan FeedResult
- // Number of feeds that are being processed.
- FeedsProcessing int
}
func NewProcessState() *ProcessState {