1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 19:45:24 +00:00
v2fly/app/proxyman/errors.generated.go

8 lines
166 B
Go
Raw Normal View History

2017-04-08 23:43:25 +00:00
package proxyman
import "v2ray.com/core/common/errors"
2018-01-12 23:07:37 +00:00
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).Path("App", "Proxyman")
}