package aero import "sync" var contextPool = sync.Pool{ New: func() any { return &context{} }, }