mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
13 lines
119 B
Go
13 lines
119 B
Go
//+build go1.9
|
|
|
|
package concurrent
|
|
|
|
import "sync"
|
|
|
|
type Map struct {
|
|
sync.Map
|
|
}
|
|
|
|
func NewMap() *Map {
|
|
return &Map{}
|
|
} |