1
0
mirror of https://github.com/chai2010/advanced-go-programming-book.git synced 2025-05-29 08:12:21 +00:00

fixed import path

This commit is contained in:
sfw 2018-08-04 22:56:28 +08:00
parent 2c6bdbc83b
commit ec669e8389
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import (
"fmt"
"log"
"github.com/chai2010/advanced-go-programming-book/examples/ch4-01-rpc-inro/hello-service-v2/api"
"github.com/chai2010/advanced-go-programming-book/vendor/gobook.examples/ch4-01-rpc-inro/hello-service-v2/api"
)
type HelloService struct{}

View File

@ -5,7 +5,7 @@ import (
"net"
"net/rpc"
"github.com/chai2010/advanced-go-programming-book/examples/ch4-01-rpc-inro/hello-service-v2/api"
"github.com/chai2010/advanced-go-programming-book/vendor/gobook.examples/ch4-01-rpc-inro/hello-service-v2/api"
)
type HelloService struct{}