arista-proxy: fix import paths

master
Serge Bazanski 2018-10-25 12:10:17 +01:00
parent 246ccd2182
commit ec9c2b1a15
3 changed files with 2 additions and 7 deletions

View File

@ -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
--------------------

View File

@ -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 (

View File

@ -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) {