mirror of
https://github.com/tmrts/go-patterns.git
synced 2025-04-02 20:56:12 +03:00
creational/singleton: fix dereferencing
This commit is contained in:
parent
589531765d
commit
cf0e410960
1 changed files with 2 additions and 2 deletions
|
@ -11,9 +11,9 @@ type singleton map[string]string
|
|||
|
||||
var once sync.Once
|
||||
|
||||
var instance *singleton
|
||||
var instance singleton
|
||||
|
||||
func New() *singleton {
|
||||
func New() singleton {
|
||||
once.Do(func() {
|
||||
instance = make(singleton)
|
||||
})
|
||||
|
|
Loading…
Add table
Reference in a new issue