1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-09-26 04:04:14 -04:00
Files
v2fly/app/router/command/errors.generated.go

10 lines
221 B
Go
Raw Normal View History

2020-09-24 10:24:26 +08:00
package command
import "github.com/v2fly/v2ray-core/v5/common/errors"
2020-09-24 10:24:26 +08:00
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}