Added basic functionality

This commit is contained in:
2023-07-18 18:02:57 +02:00
parent f81489d8a9
commit 7fd8bac2bc
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{}
},
}