Xray-core/common/singbridge/error.go

11 lines
173 B
Go
Raw Normal View History

2023-04-23 14:31:41 +03:00
package singbridge
import E "github.com/sagernet/sing/common/exceptions"
func ReturnError(err error) error {
if E.IsClosedOrCanceled(err) {
return nil
}
return err
}