You've already forked openaccounting-server
mirror of
https://github.com/openaccounting/oa-server.git
synced 2025-12-09 00:50:59 +13: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{}
|
|
} |