10 lines
101 B
Go

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