v2ray jsonpb engineering support: auto generated

This commit is contained in:
Shelikhoo 2021-06-19 23:50:40 +01:00
parent 8566ecee1d
commit 45aabb7635
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316
1 changed files with 9 additions and 0 deletions

View File

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