1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-05-09 22:19:07 -04:00

move single connection HTTP transport implementation

This commit is contained in:
Shelikhoo
2025-07-04 16:53:49 +01:00
committed by Xiaokang Wang (Shelikhoo)
parent 81bbf5200d
commit 089981bf49

View File

@@ -0,0 +1,9 @@
package httponconnection
import "github.com/v2fly/v2ray-core/v5/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}