1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-02 23:47:07 -05:00
This commit is contained in:
Darien Raymond 2018-02-17 21:22:28 +01:00
parent 2789798390
commit 5bd3cee371
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -2,4 +2,6 @@ package command
import "v2ray.com/core/common/errors"
func newError(values ...interface{}) *errors.Error { return errors.New(values...).Path("App", "Log", "Command") }
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).Path("App", "Log", "Command")
}