mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-17 16:12:42 +08:00
12 lines
180 B
Go
12 lines
180 B
Go
package collections
|
|
|
|
import "github.com/charlienet/go-mixed/locker"
|
|
|
|
type options struct {
|
|
mu locker.RWLocker
|
|
}
|
|
|
|
func emptyLocker() locker.RWLocker {
|
|
return locker.EmptyLocker
|
|
}
|