mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-07-05 08:00:55 +00:00
8 lines
168 B
Go
8 lines
168 B
Go
![]() |
package mux
|
||
|
|
||
|
import "v2ray.com/core/common/errors"
|
||
|
|
||
|
func newError(values ...interface{}) *errors.Error {
|
||
|
return errors.New(values...).Path("App", "Proxyman", "Mux")
|
||
|
}
|