copilot-swe-agent[bot] d936a45bfd Fix SSE specification compliance - add space after colon in all SSE fields
Co-authored-by: appleboy <21979+appleboy@users.noreply.github.com>
2025-11-15 15:22:08 +00:00

13 lines
119 B
Go

//+build go1.9
package concurrent
import "sync"
type Map struct {
sync.Map
}
func NewMap() *Map {
return &Map{}
}