Skip to content

Instantly share code, notes, and snippets.

@danielfbm
Created February 4, 2017 16:13
Show Gist options
  • Save danielfbm/cb0d2c9c176d40bff219920c9ad7f395 to your computer and use it in GitHub Desktop.
Save danielfbm/cb0d2c9c176d40bff219920c9ad7f395 to your computer and use it in GitHub Desktop.
golang singleton design pattern
package main
import (
"fmt"
"sync"
)
type MyStruct struct {
Name string
}
var singleton *MyStruct
func getStruct() *MyStruct {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment