2022-04-06 11:48:16 +02:00

12 lines
100 B
Go

package missinggo
import (
"sync"
)
type RWLocker interface {
sync.Locker
RLock()
RUnlock()
}