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