Replace: domain conf loader

This commit is contained in:
JimhHan
2021-03-26 15:28:27 +08:00
parent b11429eaee
commit 14189eba07
5 changed files with 2 additions and 2 deletions
@@ -0,0 +1,9 @@
package conf
import "github.com/xtls/xray-core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}