mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 09:00:20 +08:00
12 lines
184 B
Go
12 lines
184 B
Go
package syncx
|
|
|
|
import "sync"
|
|
|
|
// Once returns a func that guarantees fn can only called once.
|
|
func Once(fn func()) func() {
|
|
once := new(sync.Once)
|
|
return func() {
|
|
once.Do(fn)
|
|
}
|
|
}
|