gin router

This commit is contained in:
2019-07-01 09:42:50 -04:00
parent 5868d58832
commit dc356da4c4
576 changed files with 305761 additions and 19 deletions
+15
View File
@@ -0,0 +1,15 @@
//+build go1.9
package concurrent
import "sync"
// Map is a wrapper for sync.Map introduced in go1.9
type Map struct {
sync.Map
}
// NewMap creates a thread safe Map
func NewMap() *Map {
return &Map{}
}