address
This commit is contained in:
snoop 2017-05-29 20:32:23 +09:00
parent 8a61bb6810
commit df1d7acb04
8 changed files with 12 additions and 11 deletions

3
.gitignore vendored
View File

@ -58,4 +58,5 @@ fabric.properties
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/ .glide/
.idea/
*.iml

View File

@ -6,7 +6,7 @@ import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"encoding/json" "encoding/json"
"github.com/golang/glog" "github.com/golang/glog"
"loafle.com/overflow/overflow_proxy_service/proxy" "git.loafle.net/overflow/overflow_proxy_service/proxy"
) )
func TestServices(t *testing.T) { func TestServices(t *testing.T) {

View File

@ -2,8 +2,8 @@ package gateway
import ( import (
"golang.org/x/net/context" "golang.org/x/net/context"
pb "loafle.com/overflow/overflow_api_service/grpc" pb "git.loafle.net/overflow/overflow_api_service/grpc"
"loafle.com/overflow/overflow_proxy_service/proxy" "git.loafle.net/overflow/overflow_proxy_service/proxy"
"github.com/golang/glog" "github.com/golang/glog"
"encoding/json" "encoding/json"
"reflect" "reflect"

View File

@ -3,7 +3,7 @@ package main
import ( import (
"flag" "flag"
"github.com/golang/glog" "github.com/golang/glog"
"loafle.com/overflow/overflow_gateway_service/server" "git.loafle.net/overflow/overflow_gateway_service/server"
) )

View File

@ -1,10 +1,10 @@
package main package main
import ( import (
"loafle.com/overflow/overflow_gateway_service/gateway" "git.loafle.net/overflow/overflow_gateway_service/gateway"
"flag" "flag"
"github.com/golang/glog" "github.com/golang/glog"
"loafle.com/overflow/overflow_gateway_service/server" "git.loafle.net/overflow/overflow_gateway_service/server"
) )

View File

@ -5,7 +5,7 @@ import (
"golang.org/x/net/context" "golang.org/x/net/context"
"github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/grpc-ecosystem/grpc-gateway/runtime"
"google.golang.org/grpc" "google.golang.org/grpc"
pb "loafle.com/overflow/overflow_api_service/grpc" pb "git.loafle.net/overflow/overflow_api_service/grpc"
"net/http" "net/http"
) )

View File

@ -3,8 +3,8 @@ package server
import ( import (
"net" "net"
"google.golang.org/grpc" "google.golang.org/grpc"
pb "loafle.com/overflow/overflow_api_service/grpc" pb "git.loafle.net/overflow/overflow_api_service/grpc"
"loafle.com/overflow/overflow_gateway_service/gateway" "git.loafle.net/overflow/overflow_gateway_service/gateway"
) )
func RunRpc() error { func RunRpc() error {

View File

@ -2,7 +2,7 @@ package server
import ( import (
"testing" "testing"
"loafle.com/overflow/overflow_gateway_service/gateway" "git.loafle.net/overflow/overflow_gateway_service/gateway"
"flag" "flag"
"github.com/golang/glog" "github.com/golang/glog"
"time" "time"