Skip to content

Commit d8d3a75

Browse files
committed
chore: update import paths after repo move
Signed-off-by: Andrey Smirnov <[email protected]>
1 parent dbf07a4 commit d8d3a75

File tree

9 files changed

+74
-74
lines changed

9 files changed

+74
-74
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name: Go
2-
on: [push]
2+
on:
3+
- push
4+
- pull_request
35
jobs:
46

57
build:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# gRPC Proxy
22

3-
[![Go Report Card](https://goreportcard.com/badge/github.com/smira/grpc-proxy)](https://goreportcard.com/report/github.com/smira/grpc-proxy)
4-
[![GoDoc](http://img.shields.io/badge/GoDoc-Reference-blue.svg)](https://godoc.org/github.com/smira/grpc-proxy)
3+
[![Go Report Card](https://goreportcard.com/badge/github.com/talos-systems/grpc-proxy)](https://goreportcard.com/report/github.com/talos-systems/grpc-proxy)
4+
[![GoDoc](http://img.shields.io/badge/GoDoc-Reference-blue.svg)](https://godoc.org/github.com/talos-systems/grpc-proxy)
55
[![Apache 2.0 License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)
66

77
[gRPC Go](https://github.com/grpc/grpc-go) Proxy server

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
module github.com/smira/grpc-proxy
1+
module github.com/talos-systems/grpc-proxy
22

33
go 1.13
44

55
require (
66
github.com/golang/protobuf v1.3.2
77
github.com/hashicorp/go-multierror v1.0.0
88
github.com/stretchr/testify v1.4.0
9-
golang.org/x/net v0.0.0-20191116160921-f9c825593386 // indirect
109
google.golang.org/grpc v1.25.1
1110
)

go.sum

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@ golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHl
3131
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
3232
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
3333
golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
34+
golang.org/x/net v0.0.0-20190311183353-d8887717615a h1:oWX7TPOiFAMXLq8o0ikBYfCJVlRHBcsciT5bXOrH628=
3435
golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
35-
golang.org/x/net v0.0.0-20191116160921-f9c825593386 h1:ktbWvQrW08Txdxno1PiDpSxPXG6ndGsfnJjRRtkM0LQ=
36-
golang.org/x/net v0.0.0-20191116160921-f9c825593386/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
3736
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
3837
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
3938
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=

proxy/examples_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"google.golang.org/grpc/metadata"
1313
"google.golang.org/grpc/status"
1414

15-
"github.com/smira/grpc-proxy/proxy"
15+
"github.com/talos-systems/grpc-proxy/proxy"
1616
)
1717

1818
var (
@@ -24,7 +24,7 @@ func ExampleRegisterService() {
2424
server := grpc.NewServer(grpc.CustomCodec(proxy.Codec()))
2525
// Register a TestService with 4 of its methods explicitly.
2626
proxy.RegisterService(server, director,
27-
"smira.testproto.TestService",
27+
"talos.testproto.TestService",
2828
[]string{"PingEmpty", "Ping", "PingError", "PingList"},
2929
[]string{"PingList"})
3030
}

proxy/handler_multi_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ import (
2828
"google.golang.org/grpc/metadata"
2929
"google.golang.org/grpc/status"
3030

31-
"github.com/smira/grpc-proxy/proxy"
32-
pb "github.com/smira/grpc-proxy/testservice"
31+
pb "github.com/talos-systems/grpc-proxy/testservice"
32+
"github.com/talos-systems/grpc-proxy/proxy"
3333
)
3434

3535
const (
@@ -596,7 +596,7 @@ func (s *MultiServiceSuite) SetupSuite() {
596596
)
597597
// Ping handler is handled as an explicit registration and not as a TransparentHandler.
598598
proxy.RegisterService(s.proxy, director,
599-
"smira.testproto.MultiService",
599+
"talos.testproto.MultiService",
600600
[]string{"Ping", "PingStream", "PingStreamError"},
601601
[]string{"PingStream", "PingStreamError"})
602602

proxy/handler_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import (
2121

2222
"fmt"
2323

24-
"github.com/smira/grpc-proxy/proxy"
25-
pb "github.com/smira/grpc-proxy/testservice"
24+
"github.com/talos-systems/grpc-proxy/proxy"
25+
pb "github.com/talos-systems/grpc-proxy/testservice"
2626
)
2727

2828
const (
@@ -229,7 +229,7 @@ func (s *ProxyHappySuite) SetupSuite() {
229229
)
230230
// Ping handler is handled as an explicit registration and not as a TransparentHandler.
231231
proxy.RegisterService(s.proxy, director,
232-
"smira.testproto.TestService",
232+
"talos.testproto.TestService",
233233
[]string{"Ping"},
234234
nil)
235235

testservice/test.pb.go

Lines changed: 58 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

testservice/test.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
syntax = "proto3";
22

3-
package smira.testproto;
3+
package talos.testproto;
44

55
message Empty {
66
}

0 commit comments

Comments
 (0)