2023-07-18 21:48:38 +02:00

10 lines
105 B
Go

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