Files
Patrick Nagurny ece803ec68 mailgun dep
2020-11-23 11:12:53 -05:00

13 lines
119 B
Go

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