Setup pipelining

This commit is contained in:
2023-12-30 02:51:16 -06:00
parent 1a6ef0230a
commit f2aa872346
2 changed files with 35 additions and 4 deletions

7
pipeline.go Normal file
View File

@@ -0,0 +1,7 @@
package main
// A channel that will be used to buffer incomplete entries that need to be queried properly
var incompleteEntries = make(chan Entry)
// A channel that will be used to buffer emails that need to be unsubscribed
var entries = make(chan string)