1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 01:40:44 +00:00
v2fly/features/errors.generated.go
Darien Raymond 9e66f315e6
update mocks
2018-10-23 22:41:27 +02:00

10 lines
206 B
Go

package features
import "v2ray.com/core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}