This commit is contained in:
peter zhang 2025-03-30 20:38:29 +08:00 committed by peter zhang
parent 1685c61e44
commit 5aebf27294
No known key found for this signature in database

View file

@ -6,7 +6,7 @@ import (
"github.com/xtls/xray-core/common/signal/semaphore"
)
// OnSuccess executes g() after f() returns nil.
// OnSuccess executes g() after f() returns error.
func OnSuccess(f func() error, g func() error) func() error {
return func() error {
if err := f(); err != nil {