Added basic functionality

This commit is contained in:
Eduard Urbach 2023-07-18 18:02:57 +02:00
parent 66176ba22a
commit ea449fdc81
Signed by: eduard
GPG key ID: 49226B848C78F6C8
9 changed files with 177 additions and 12 deletions

9
pool.go Normal file
View file

@ -0,0 +1,9 @@
package aero
import "sync"
var contextPool = sync.Pool{
New: func() any {
return &context{}
},
}