1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 00:22:41 +08:00
Files
go-mixed/locker/rw_locker.go
2022-06-10 17:04:34 +08:00

8 lines
92 B
Go

package locker
import "sync"
func NewRWLocker() *sync.RWMutex {
return &sync.RWMutex{}
}