Files

10 lines
216 B
Go
Raw Permalink Normal View History

2021-03-06 23:39:50 -05:00
package fakedns
import "github.com/xtls/xray-core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}