mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 07:36:27 -04:00
Bumps [github.com/sasha-s/go-deadlock](https://github.com/sasha-s/go-deadlock) from 0.3.6 to 0.3.9. - [Release notes](https://github.com/sasha-s/go-deadlock/releases) - [Commits](https://github.com/sasha-s/go-deadlock/compare/v0.3.6...v0.3.9) --- updated-dependencies: - dependency-name: github.com/sasha-s/go-deadlock dependency-version: 0.3.9 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
12 lines
124 B
Go
12 lines
124 B
Go
//go:build go1.9
|
|
// +build go1.9
|
|
|
|
package deadlock
|
|
|
|
import "sync"
|
|
|
|
// Map is sync.Map wrapper
|
|
type Map struct {
|
|
sync.Map
|
|
}
|