mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 07:11:01 +00:00
10 lines
107 B
Go
10 lines
107 B
Go
// +build go1.9
|
|
|
|
package deadlock
|
|
|
|
import "sync"
|
|
|
|
// Map is sync.Map wrapper
|
|
type Map struct {
|
|
sync.Map
|
|
}
|