1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-04 00:05:21 -05:00

Add subscription manager (autogenerated)

This commit is contained in:
Shelikhoo
2023-11-21 23:04:06 +00:00
committed by Xiaokang Wang (Shelikhoo)
parent cc77e90254
commit 3de33c91b2
15 changed files with 788 additions and 6 deletions

View File

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