mirror of
https://github.com/v2ray/v2ray-core.git
synced 2026-09-20 03:17:02 +00:00
6 lines
152 B
Go
6 lines
152 B
Go
package retry
|
|
|
|
import "v2ray.com/core/common/errors"
|
|
|
|
func newError(values ...interface{}) *errors.Error { return errors.New(values...).Path("Retry") }
|