mirror of
https://github.com/tmrts/go-patterns.git
synced 2025-04-03 13:13:34 +03:00
Fix build error
remove asterisk
This commit is contained in:
parent
f7e32625ec
commit
304c68c489
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