Added basic functionality
This commit is contained in:
parent
66176ba22a
commit
ea449fdc81
9 changed files with 177 additions and 12 deletions
9
pool.go
Normal file
9
pool.go
Normal file
|
@ -0,0 +1,9 @@
|
|||
package aero
|
||||
|
||||
import "sync"
|
||||
|
||||
var contextPool = sync.Pool{
|
||||
New: func() any {
|
||||
return &context{}
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue