mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-22 19:56:39 +00:00
14 lines
167 B
Go
14 lines
167 B
Go
package structr
|
|
|
|
// once only executes 'fn' once.
|
|
func once(fn func()) func() {
|
|
var once int32
|
|
return func() {
|
|
if once != 0 {
|
|
return
|
|
}
|
|
once = 1
|
|
fn()
|
|
}
|
|
}
|