0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-06-12 03:19:36 +03:00

Update dependencies

This commit is contained in:
世界
2023-04-23 19:31:41 +08:00
parent 90d915ea05
commit 18e5b0963f
20 changed files with 523 additions and 238 deletions

View File

@ -0,0 +1,10 @@
package singbridge
import E "github.com/sagernet/sing/common/exceptions"
func ReturnError(err error) error {
if E.IsClosedOrCanceled(err) {
return nil
}
return err
}