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

Merge pull request #225 from fuwensun/pr4-1-1b

fixed import path
This commit is contained in:
chai2010 2018-08-05 17:49:40 +08:00 committed by GitHub
commit 99e88e9976
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"
"gobook.examples/ch4-01-rpc-intro/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"
"gobook.examples/ch4-01-rpc-intro/hello-service-v2/api"
)
type HelloService struct{}