mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
2bef937507
full diff: https://github.com/coreos/etcd/compare/v3.3.12...v3.3.25 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
15 lines
209 B
Go
15 lines
209 B
Go
//+build go1.9
|
|
|
|
package concurrent
|
|
|
|
import "sync"
|
|
|
|
// Map is a wrapper for sync.Map introduced in go1.9
|
|
type Map struct {
|
|
sync.Map
|
|
}
|
|
|
|
// NewMap creates a thread safe Map
|
|
func NewMap() *Map {
|
|
return &Map{}
|
|
}
|