1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-26 09:25:23 +00:00

Move config to app/point

This commit is contained in:
V2Ray 2015-10-30 22:50:45 +01:00
parent 2b45e63607
commit d585ec0593
11 changed files with 7 additions and 7 deletions

View File

@ -5,8 +5,8 @@ import (
"io/ioutil"
"os"
"github.com/v2ray/v2ray-core/app/point/config"
"github.com/v2ray/v2ray-core/common/log"
"github.com/v2ray/v2ray-core/config"
proxyconfig "github.com/v2ray/v2ray-core/proxy/common/config"
)

View File

@ -4,7 +4,7 @@ import (
"path/filepath"
"testing"
"github.com/v2ray/v2ray-core/config/json"
"github.com/v2ray/v2ray-core/app/point/config/json"
_ "github.com/v2ray/v2ray-core/proxy/freedom/config/json"
_ "github.com/v2ray/v2ray-core/proxy/socks/config/json"
_ "github.com/v2ray/v2ray-core/proxy/vmess/config/json"

View File

@ -1,10 +1,10 @@
package point
import (
"github.com/v2ray/v2ray-core/app/point/config"
"github.com/v2ray/v2ray-core/common/log"
v2net "github.com/v2ray/v2ray-core/common/net"
"github.com/v2ray/v2ray-core/common/retry"
"github.com/v2ray/v2ray-core/config"
"github.com/v2ray/v2ray-core/proxy/common/connhandler"
"github.com/v2ray/v2ray-core/transport/ray"
)

View File

@ -1,8 +1,8 @@
package router
import (
"github.com/v2ray/v2ray-core/app/point/config"
v2net "github.com/v2ray/v2ray-core/common/net"
"github.com/v2ray/v2ray-core/config"
)
type Router interface {

View File

@ -1,9 +1,9 @@
package wildcard_router
import (
"github.com/v2ray/v2ray-core/app/point/config"
"github.com/v2ray/v2ray-core/app/router"
v2net "github.com/v2ray/v2ray-core/common/net"
"github.com/v2ray/v2ray-core/config"
)
type WildcardRouter struct {

View File

@ -8,8 +8,8 @@ import (
"github.com/v2ray/v2ray-core"
"github.com/v2ray/v2ray-core/app/point"
jsonconf "github.com/v2ray/v2ray-core/app/point/config/json"
"github.com/v2ray/v2ray-core/common/log"
jsonconf "github.com/v2ray/v2ray-core/config/json"
// The following are neccesary as they register handlers in their init functions.
_ "github.com/v2ray/v2ray-core/proxy/dokodemo"

View File

@ -1,7 +1,7 @@
package mocks
import (
"github.com/v2ray/v2ray-core/config"
"github.com/v2ray/v2ray-core/app/point/config"
)
type ConnectionConfig struct {