1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-26 05:37:18 +02:00
Jesse Duffield 755ae0ef84 add deadlock mutex package
write to deadlock stderr after closing gocui

more deadlock checking
2022-08-07 11:16:14 +10:00

11 lines
107 B
Go

// +build go1.9
package deadlock
import "sync"
// Map is sync.Map wrapper
type Map struct {
sync.Map
}