12 lines
168 B
Go
12 lines
168 B
Go
package common
|
|
|
|
import (
|
|
"fyne.io/fyne/v2/internal/async"
|
|
)
|
|
|
|
var DonePool = async.Pool[chan struct{}]{
|
|
New: func() chan struct{} {
|
|
return make(chan struct{})
|
|
},
|
|
}
|