Add chansync interfaces

This commit is contained in:
Matt Joiner 2021-05-20 20:27:54 +10:00
parent 47c49735fc
commit a2dbec3b4a
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package chansync
// Here we'll strongly-type channels to assist correct usage, if possible.
type (
Signaled <-chan struct{}
Done <-chan struct{}
)