mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 09:00:20 +08:00
11 lines
120 B
Go
11 lines
120 B
Go
package syncx
|
|
|
|
import "sync"
|
|
|
|
func Once(fn func()) func() {
|
|
once := new(sync.Once)
|
|
return func() {
|
|
once.Do(fn)
|
|
}
|
|
}
|