mirror of
https://github.com/Xevion/scla-unsubscribe.git
synced 2025-12-07 13:16:29 -06:00
8 lines
258 B
Go
8 lines
258 B
Go
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)
|