Add request rtt reverser tool

This commit is contained in:
Shelikhoo 2025-11-15 16:49:53 +00:00 committed by Xiaokang Wang (Shelikhoo)
parent f1c3c85795
commit dcd9bd987c

View File

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