1
0
Fork 0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-01-11 13:13:32 +02:00
Xray-core/proxy/blackhole/errors.generated.go
2020-12-04 09:36:16 +08:00

9 lines
218 B
Go

package blackhole
import "github.com/xtls/xray-core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}