From e4031c14a5060c4fadf7e3c655bd0f6d7714b634 Mon Sep 17 00:00:00 2001 From: FUJITA Tomonori Date: Fri, 6 Jul 2018 15:49:35 +0900 Subject: api: decrease the dependency move grpc_server.go to server/ Signed-off-by: FUJITA Tomonori --- docs/sources/lib.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/sources/lib.md b/docs/sources/lib.md index 390a5970..b7b16698 100644 --- a/docs/sources/lib.md +++ b/docs/sources/lib.md @@ -14,7 +14,6 @@ package main import ( "fmt" log "github.com/sirupsen/logrus" - api "github.com/osrg/gobgp/api" "github.com/osrg/gobgp/config" "github.com/osrg/gobgp/packet/bgp" gobgp "github.com/osrg/gobgp/server" @@ -29,7 +28,7 @@ func main() { // start grpc api server. this is not mandatory // but you will be able to use `gobgp` cmd with this. - g := api.NewGrpcServer(s, ":50051") + g := gobgp.NewGrpcServer(s, ":50051") go g.Serve() // global configuration -- cgit v1.2.3