mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-18 00:22:41 +08:00
15 lines
218 B
Go
15 lines
218 B
Go
package maps
|
|
|
|
import (
|
|
"github.com/charlienet/go-mixed/locker"
|
|
)
|
|
|
|
type options struct {
|
|
hasLocker bool
|
|
mu locker.RWLocker
|
|
}
|
|
|
|
func acquireDefaultOptions() *options {
|
|
return &options{mu: locker.EmptyLocker}
|
|
}
|