THE NEXT FUTURE becomes THE REALITY NOW

Thank @yuhan6665 for testing
This commit is contained in:
RPRX
2023-02-15 16:07:12 +00:00
committed by GitHub
parent 15999e5c2a
commit 4d2e2b24d3
20 changed files with 1054 additions and 83 deletions

View File

@@ -0,0 +1,9 @@
package reality
import "github.com/xtls/xray-core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}