VLESS PREVIEW 1.1

This commit is contained in:
RPRX
2020-07-28 15:00:23 +00:00
committed by GitHub
parent 0a19fb5a3a
commit bad7e2cfd8
26 changed files with 2326 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
package encoding
import "v2ray.com/core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}