pull/861/head
Darien Raymond 2018-02-05 23:39:04 +01:00
parent 1e6d5561cc
commit 3a0f211c22
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
6 changed files with 18 additions and 14 deletions

View File

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

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", "Proxyman", "Command") }
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).Path("App", "Proxyman", "Command")
}