Skip to content

Commit d25a39a

Browse files
committed
fix import msgpack
1 parent bcfd9a7 commit d25a39a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

connection.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package tarantool
22

33
import (
44
"net"
5-
"github.com/vmihailenco/msgpack"
5+
"gopkg.in/vmihailenco/msgpack.v2"
66
"sync/atomic"
77
"bytes"
88
"sync"

request.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package tarantool
22

33
import(
4-
"github.com/vmihailenco/msgpack"
4+
"gopkg.in/vmihailenco/msgpack.v2"
55
"errors"
66
"time"
77
)

response.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package tarantool
22

33
import(
44
"fmt"
5-
"github.com/vmihailenco/msgpack"
5+
"gopkg.in/vmihailenco/msgpack.v2"
66
)
77

88
type Response struct {

0 commit comments

Comments
 (0)