1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 09:50:43 +00:00

added jsonpb format support: auto generated

This commit is contained in:
Shelikhoo 2021-06-19 15:01:22 +01:00
parent 32374eb545
commit 2df4fa39e3
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316

View File

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