10 lines
103 B
Go
Raw Normal View History

2023-07-18 18:02:57 +02:00
package aero
import "sync"
var contextPool = sync.Pool{
New: func() any {
return &context{}
},
}