1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-04-08 06:46:07 -04:00
Files
v2fly/common/task/taskDerive/errors.generated.go
Shelikhoo f516eca541 Add IPv6 happy eyeball support for wireguard
(mostly vibe coded)
2026-02-20 11:43:33 +00:00

10 lines
224 B
Go

package taskDerive
import "github.com/v2fly/v2ray-core/v5/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}