From ec9c2b1a15fff222de38de689e9b723eb2554e2c Mon Sep 17 00:00:00 2001 From: Serge Bazanski Date: Thu, 25 Oct 2018 12:10:17 +0100 Subject: [PATCH] arista-proxy: fix import paths --- go/svc/arista-proxy/README.md | 5 ----- go/svc/arista-proxy/main.go | 2 +- go/svc/arista-proxy/service.go | 2 +- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/go/svc/arista-proxy/README.md b/go/svc/arista-proxy/README.md index ed90285..60368dc 100644 --- a/go/svc/arista-proxy/README.md +++ b/go/svc/arista-proxy/README.md @@ -5,11 +5,6 @@ Our Arista 7148S does not support gRPC/OpenConfig, so we have to make our own da The schema is supposed to be 1:1 mapped to the JSON-RPC EAPI. This is just a dumb proxy. -PKI ---- - -This service uses [HSPKI](https://code.hackerspace.pl/q3k/hspki), you will need to generate development TLS certificates for local use. - Getting and Building -------------------- diff --git a/go/svc/arista-proxy/main.go b/go/svc/arista-proxy/main.go index f417f1f..7e30079 100644 --- a/go/svc/arista-proxy/main.go +++ b/go/svc/arista-proxy/main.go @@ -8,7 +8,7 @@ import ( "github.com/golang/glog" "github.com/ybbus/jsonrpc" - pb "code.hackerspace.pl/q3k/arista-proxy/proto" + pb "code.hackerspace.pl/hscloud/go/svc/arista-proxy/proto" ) var ( diff --git a/go/svc/arista-proxy/service.go b/go/svc/arista-proxy/service.go index 62d68ea..d7e2a29 100644 --- a/go/svc/arista-proxy/service.go +++ b/go/svc/arista-proxy/service.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - pb "code.hackerspace.pl/q3k/arista-proxy/proto" + pb "code.hackerspace.pl/hscloud/go/svc/arista-proxy/proto" ) func (s *server) ShowVersion(ctx context.Context, req *pb.ShowVersionRequest) (*pb.ShowVersionResponse, error) {