10 lines
103 B
Go

package aero
import "sync"
var contextPool = sync.Pool{
New: func() any {
return &context{}
},
}