1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-03 13:13:34 +03:00
This commit is contained in:
leonklingele 2017-01-07 18:15:06 +00:00 committed by GitHub
commit 6641047d3d

View file

@ -9,14 +9,12 @@ package singleton
type singleton map[string]string
var once sync.Once
var instance singleton
func New() singleton {
once.Do(func() {
if instance == nil {
instance = make(singleton)
})
}
return instance
}