1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 01:15:38 +00:00

remove unused files

This commit is contained in:
Darien Raymond 2017-12-01 22:56:44 +01:00
parent ed8093d977
commit b3d9433036
2 changed files with 0 additions and 21 deletions

View File

@ -1,16 +0,0 @@
package conf
import (
"io"
"v2ray.com/core"
jsonconf "v2ray.com/ext/tools/conf/serial"
)
//go:generate go run $GOPATH/src/v2ray.com/core/tools/generrorgen/main.go -pkg conf -path Tools,Conf
func init() {
core.RegisterConfigLoader(core.ConfigFormat_JSON, func(input io.Reader) (*core.Config, error) {
return jsonconf.LoadJSONConfig(input)
})
}

View File

@ -1,5 +0,0 @@
package conf
import "v2ray.com/core/common/errors"
func newError(values ...interface{}) *errors.Error { return errors.New(values...).Path("Tools", "Conf") }