mirror of
https://github.com/containers/skopeo.git
synced 2025-08-23 16:49:05 +00:00
Bumps [github.com/containers/common](https://github.com/containers/common) from 0.38.0 to 0.38.1. - [Release notes](https://github.com/containers/common/releases) - [Commits](https://github.com/containers/common/compare/v0.38.0...v0.38.1) Signed-off-by: dependabot[bot] <support@github.com>
16 lines
209 B
Go
16 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{}
|
|
}
|