Browse Source

isolate sniffer config

Shelikhoo 4 years ago
parent
commit
38210fd74a
1 changed files with 9 additions and 0 deletions
  1. 9 0
      infra/conf/cfgcommon/sniffer/errors.generated.go

+ 9 - 0
infra/conf/cfgcommon/sniffer/errors.generated.go

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