mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
13 lines
119 B
Go
13 lines
119 B
Go
//+build go1.9
|
|
|
|
package concurrent
|
|
|
|
import "sync"
|
|
|
|
type Map struct {
|
|
sync.Map
|
|
}
|
|
|
|
func NewMap() *Map {
|
|
return &Map{}
|
|
} |