diff --git a/cluster/cluster.go b/cluster/cluster.go index cf4a077..fee5c6a 100644 --- a/cluster/cluster.go +++ b/cluster/cluster.go @@ -2,9 +2,9 @@ package cluster import ( "fmt" - "github.com/duanhf2012/originnet/log" - "github.com/duanhf2012/originnet/rpc" - "github.com/duanhf2012/originnet/service" + "github.com/duanhf2012/origin/log" + "github.com/duanhf2012/origin/rpc" + "github.com/duanhf2012/origin/service" "strings" ) diff --git a/event/event.go b/event/event.go index 2f3a109..a270c55 100644 --- a/event/event.go +++ b/event/event.go @@ -1,7 +1,7 @@ package event import ( - "github.com/duanhf2012/originnet/log" + "github.com/duanhf2012/origin/log" "sync" ) diff --git a/example/GateService/GateService.go b/example/GateService/GateService.go index 079e1c9..da7307e 100644 --- a/example/GateService/GateService.go +++ b/example/GateService/GateService.go @@ -1,10 +1,10 @@ package GateService import ( - "github.com/duanhf2012/originnet/event" - "github.com/duanhf2012/originnet/node" - "github.com/duanhf2012/originnet/service" - "github.com/duanhf2012/originnet/sysservice" + "github.com/duanhf2012/origin/event" + "github.com/duanhf2012/origin/node" + "github.com/duanhf2012/origin/service" + "github.com/duanhf2012/origin/sysservice" ) type GateService struct { diff --git a/example/main.go b/example/main.go index 7e699be..6193dc1 100644 --- a/example/main.go +++ b/example/main.go @@ -2,11 +2,11 @@ package main import ( "fmt" - "github.com/duanhf2012/originnet/example/GateService" - "github.com/duanhf2012/originnet/node" - "github.com/duanhf2012/originnet/service" - "github.com/duanhf2012/originnet/sysmodule" - "github.com/duanhf2012/originnet/sysservice" + "github.com/duanhf2012/origin/example/GateService" + "github.com/duanhf2012/origin/node" + "github.com/duanhf2012/origin/service" + "github.com/duanhf2012/origin/sysmodule" + "github.com/duanhf2012/origin/sysservice" "time" ) diff --git a/network/tcp_client.go b/network/tcp_client.go index 1db8199..635d1fd 100644 --- a/network/tcp_client.go +++ b/network/tcp_client.go @@ -1,7 +1,7 @@ package network import ( - "github.com/duanhf2012/originnet/log" + "github.com/duanhf2012/origin/log" "net" "sync" "time" diff --git a/network/tcp_conn.go b/network/tcp_conn.go index 489be77..58b36cc 100644 --- a/network/tcp_conn.go +++ b/network/tcp_conn.go @@ -1,7 +1,7 @@ package network import ( - "github.com/duanhf2012/originnet/log" + "github.com/duanhf2012/origin/log" "net" "sync" ) diff --git a/network/tcp_server.go b/network/tcp_server.go index 385fb6f..f692966 100644 --- a/network/tcp_server.go +++ b/network/tcp_server.go @@ -1,7 +1,7 @@ package network import ( - "github.com/duanhf2012/originnet/log" + "github.com/duanhf2012/origin/log" "net" "sync" "time" diff --git a/node/node.go b/node/node.go index 7fb8517..d7d62e5 100644 --- a/node/node.go +++ b/node/node.go @@ -2,8 +2,8 @@ package node import ( "fmt" - "github.com/duanhf2012/originnet/service" - "github.com/duanhf2012/originnet/cluster" + "github.com/duanhf2012/origin/cluster" + "github.com/duanhf2012/origin/service" "io/ioutil" "os" "os/signal" diff --git a/rpc/client.go b/rpc/client.go index ffa5ddf..4c0501f 100644 --- a/rpc/client.go +++ b/rpc/client.go @@ -2,8 +2,8 @@ package rpc import ( "fmt" - "github.com/duanhf2012/originnet/log" - "github.com/duanhf2012/originnet/network" + "github.com/duanhf2012/origin/log" + "github.com/duanhf2012/origin/network" "math" "reflect" "strings" diff --git a/rpc/rpchandler.go b/rpc/rpchandler.go index f9f7a29..a6b6098 100644 --- a/rpc/rpchandler.go +++ b/rpc/rpchandler.go @@ -2,7 +2,7 @@ package rpc import ( "fmt" - "github.com/duanhf2012/originnet/log" + "github.com/duanhf2012/origin/log" "reflect" "strings" "unicode" diff --git a/rpc/server.go b/rpc/server.go index afe34e4..341ae7f 100644 --- a/rpc/server.go +++ b/rpc/server.go @@ -2,8 +2,8 @@ package rpc import ( "fmt" - "github.com/duanhf2012/originnet/log" - "github.com/duanhf2012/originnet/network" + "github.com/duanhf2012/origin/log" + "github.com/duanhf2012/origin/network" "math" "net" "reflect" diff --git a/service/module.go b/service/module.go index c2b6466..cc006d1 100644 --- a/service/module.go +++ b/service/module.go @@ -2,8 +2,8 @@ package service import ( "fmt" - "github.com/duanhf2012/originnet/event" - "github.com/duanhf2012/originnet/util/timer" + "github.com/duanhf2012/origin/event" + "github.com/duanhf2012/origin/util/timer" "time" ) diff --git a/service/service.go b/service/service.go index a9d6614..743f34e 100644 --- a/service/service.go +++ b/service/service.go @@ -1,8 +1,8 @@ package service import ( - "github.com/duanhf2012/originnet/rpc" - "github.com/duanhf2012/originnet/util/timer" + "github.com/duanhf2012/origin/rpc" + "github.com/duanhf2012/origin/util/timer" "reflect" "sync" "sync/atomic" diff --git a/sysmodule/DBModule.go b/sysmodule/DBModule.go index 1de1aea..c71e1fb 100644 --- a/sysmodule/DBModule.go +++ b/sysmodule/DBModule.go @@ -4,7 +4,7 @@ import ( "database/sql" "errors" "fmt" - "github.com/duanhf2012/originnet/log" + "github.com/duanhf2012/origin/log" "math/rand" "net/url" "reflect" @@ -13,7 +13,7 @@ import ( "sync" "time" - "github.com/duanhf2012/originnet/service" + "github.com/duanhf2012/origin/service" _ "github.com/go-sql-driver/mysql" ) diff --git a/sysmodule/HttpClientPoolModule.go b/sysmodule/HttpClientPoolModule.go index 97c0723..e3e8220 100644 --- a/sysmodule/HttpClientPoolModule.go +++ b/sysmodule/HttpClientPoolModule.go @@ -10,7 +10,7 @@ import ( "net/url" "time" - "github.com/duanhf2012/originnet/service" + "github.com/duanhf2012/origin/service" ) type HttpClientPoolModule struct { diff --git a/sysmodule/RedisModule.go b/sysmodule/RedisModule.go index 4d443a4..1bdddcd 100644 --- a/sysmodule/RedisModule.go +++ b/sysmodule/RedisModule.go @@ -5,10 +5,10 @@ import ( "encoding/json" "errors" "fmt" - "github.com/duanhf2012/originnet/log" + "github.com/duanhf2012/origin/log" "time" - "github.com/duanhf2012/originnet/service" + "github.com/duanhf2012/origin/service" "github.com/gomodule/redigo/redis" ) diff --git a/sysservice/tcpservice.go b/sysservice/tcpservice.go index 2c29ce1..d91a907 100644 --- a/sysservice/tcpservice.go +++ b/sysservice/tcpservice.go @@ -2,10 +2,10 @@ package sysservice import ( "fmt" - "github.com/duanhf2012/originnet/event" - "github.com/duanhf2012/originnet/log" - "github.com/duanhf2012/originnet/network" - "github.com/duanhf2012/originnet/service" + "github.com/duanhf2012/origin/event" + "github.com/duanhf2012/origin/log" + "github.com/duanhf2012/origin/network" + "github.com/duanhf2012/origin/service" "sync" )