10 lines
105 B
Go
Raw Normal View History

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