1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 02:05:23 +00:00
v2fly/transport/internet/http/errors.generated.go

8 lines
176 B
Go
Raw Normal View History

2018-03-01 12:16:52 +00:00
package http
import "v2ray.com/core/common/errors"
2018-03-08 20:07:01 +00:00
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).Path("Transport", "Internet", "HTTP")
}