mailgun dep

This commit is contained in:
Patrick Nagurny
2020-11-23 11:12:53 -05:00
parent b011b28cf5
commit ece803ec68
242 changed files with 25496 additions and 11732 deletions

13
vendor/github.com/modern-go/concurrent/go_above_19.go generated vendored Normal file
View File

@@ -0,0 +1,13 @@
//+build go1.9
package concurrent
import "sync"
type Map struct {
sync.Map
}
func NewMap() *Map {
return &Map{}
}