mirror of
https://github.com/XrayR-project/XrayR.git
synced 2025-06-08 13:29:54 +00:00
8 lines
149 B
Go
8 lines
149 B
Go
package rule
|
|
|
|
import "github.com/xtls/xray-core/common/errors"
|
|
|
|
func newError(values ...interface{}) *errors.Error {
|
|
return errors.New(values...)
|
|
}
|