This commit is contained in:
sujit
2025-09-18 18:26:35 +05:45
parent 1b3ebcc325
commit 33857e32d1
55 changed files with 757 additions and 896 deletions

View File

@@ -60,7 +60,7 @@ type Param struct {
// Pre-allocated param slices to avoid any allocations
var paramPool = sync.Pool{
New: func() interface{} {
New: func() any {
return make([]Param, 0, 16)
},
}
@@ -85,7 +85,7 @@ type Ctx struct {
}
var ctxPool = sync.Pool{
New: func() interface{} {
New: func() any {
return &Ctx{}
},
}