go-patterns
go-patterns copied to clipboard
import "sync" missing in singleton example
The singleton code does not run
singleton\singleton.go:6: undefined: sync in sync.Once
unless
import "sync"
is added
@030 Hi. You imported "sync" package? Check that.
P.s. Please provide more information next time :)
@LinMAD updated