mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
13 lines
257 B
Go
13 lines
257 B
Go
package events
|
|
|
|
// Here we'll strongly-type channels to assist correct usage, if possible.
|
|
|
|
type (
|
|
Signaled <-chan struct{}
|
|
Done <-chan struct{}
|
|
Active <-chan struct{}
|
|
Signal chan<- struct{}
|
|
Acquire chan<- struct{}
|
|
Release <-chan struct{}
|
|
)
|