mirror of
https://github.com/anyproto/anytype-heart.git
synced 2025-06-08 05:47:07 +09:00
11 lines
158 B
Go
11 lines
158 B
Go
//go:build mutexdeadlockdetector
|
|
|
|
package mutex
|
|
|
|
import (
|
|
"github.com/sasha-s/go-deadlock"
|
|
)
|
|
|
|
func NewLocker() *deadlock.Mutex {
|
|
return &deadlock.Mutex{}
|
|
}
|