Browse Source

implement scoped transient storage: auto generated

Shelikhoo 3 years ago
parent
commit
2a90a46ed5
1 changed files with 9 additions and 0 deletions
  1. 9 0
      common/environment/transientstorageimpl/errors.generated.go

+ 9 - 0
common/environment/transientstorageimpl/errors.generated.go

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