mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-08 04:04:22 +02:00
755ae0ef84
write to deadlock stderr after closing gocui more deadlock checking
11 lines
107 B
Go
11 lines
107 B
Go
// +build go1.9
|
|
|
|
package deadlock
|
|
|
|
import "sync"
|
|
|
|
// Map is sync.Map wrapper
|
|
type Map struct {
|
|
sync.Map
|
|
}
|