10 lines
101 B
Go
Raw Normal View History

2023-07-18 21:48:38 +02:00
package server
2023-07-18 18:02:57 +02:00
import "sync"
var contextPool = sync.Pool{
New: func() any {
2024-03-12 22:31:45 +01:00
return &ctx{}
2023-07-18 18:02:57 +02:00
},
}