1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-12-29 05:25:21 -05:00

API: Implements RoutingService

This commit is contained in:
Vigilans
2020-09-24 10:24:26 +08:00
parent 788dd1ebc7
commit cd9ac1bac7
7 changed files with 1265 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package command
import "v2ray.com/core/common/errors"
type errPathObjHolder struct{}
func newError(values ...interface{}) *errors.Error {
return errors.New(values...).WithPathObj(errPathObjHolder{})
}