//go:build go1.9
// +build go1.9

package deadlock

import "sync"

// Map is sync.Map wrapper
type Map struct {
	sync.Map
}
