prototype for reverse proxy

This commit is contained in:
Darien Raymond
2018-10-28 00:03:11 +02:00
parent 2d000dcdaa
commit 2020bbe606
10 changed files with 820 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package reverse
import "v2ray.com/core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}