1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-05-11 06:59:17 -04:00
This commit is contained in:
Darien Raymond
2018-03-08 21:07:01 +01:00
parent 51bd5132f6
commit f17b865982
2 changed files with 4 additions and 2 deletions

View File

@@ -2,4 +2,6 @@ package http
import "v2ray.com/core/common/errors"
func newError(values ...interface{}) *errors.Error { return errors.New(values...).Path("Transport", "Internet", "HTTP") }
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).Path("Transport", "Internet", "HTTP")
}