1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-04 13:43:37 +03:00

creational/singleton: avoid another object creation

This commit is contained in:
Pramono 2019-10-09 23:19:52 +07:00
parent f978e42036
commit 668ab73b62

View file

@ -16,9 +16,11 @@ var (
)
func New() singleton {
once.Do(func() {
instance = make(singleton)
})
if singleton == nil {
once.Do(func() {
instance = make(singleton)
})
}
return instance
}