Skip to content

Commit 4be337f

Browse files
committed
Use github.com/go-stomp/stomp as the URL
Giving up on gopkg.in/stomp.vX for a number of reaons: 1. Does not play nice with travis 2. Internal error when viewing documentation at http://gopkg.in/stomp.v2 3. Does not seem to have developed much traction in the Go community
1 parent 04cc49d commit 4be337f

32 files changed

+41
-41
lines changed

ack.go

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

33
import (
4-
"gopkg.in/stomp.v2/frame"
4+
"github.com/go-stomp/stomp/frame"
55
)
66

77
// The AckMode type is an enumeration of the acknowledgement modes for a

conn.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strconv"
99
"time"
1010

11-
"gopkg.in/stomp.v2/frame"
11+
"github.com/go-stomp/stomp/frame"
1212
)
1313

1414
// Default time span to add to read/write heart-beat timeouts

conn_options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
"time"
77

8-
"gopkg.in/stomp.v2/frame"
8+
"github.com/go-stomp/stomp/frame"
99
)
1010

1111
// ConnOptions is an opaque structure used to collection options

conn_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"io"
66
"time"
77

8+
"github.com/go-stomp/stomp/frame"
9+
"github.com/go-stomp/stomp/testutil"
810
. "gopkg.in/check.v1"
9-
"gopkg.in/stomp.v2/frame"
10-
"gopkg.in/stomp.v2/testutil"
1111
)
1212

1313
type fakeReaderWriter struct {

errors.go

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

33
import (
4-
"gopkg.in/stomp.v2/frame"
4+
"github.com/go-stomp/stomp/frame"
55
)
66

77
// Error values

example_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"net"
66
"time"
77

8-
"gopkg.in/stomp.v2"
9-
"gopkg.in/stomp.v2/frame"
8+
"github.com/go-stomp/stomp"
9+
"github.com/go-stomp/stomp/frame"
1010
)
1111

1212
func ExampleConn_Send(c *stomp.Conn) error {

examples/client_test/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"os"
77

8-
"gopkg.in/stomp.v2"
8+
"github.com/go-stomp/stomp"
99
)
1010

1111
const defaultPort = ":61613"

message.go

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

33
import (
4-
"gopkg.in/stomp.v2/frame"
4+
"github.com/go-stomp/stomp/frame"
55
)
66

77
// A Message represents a message received from the STOMP server.

send_options.go

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

33
import (
4-
"gopkg.in/stomp.v2/frame"
4+
"github.com/go-stomp/stomp/frame"
55
)
66

77
// SendOpt contains options for for the Conn.Send and Transaction.Send functions.

server/client/conn.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"strconv"
99
"time"
1010

11-
"gopkg.in/stomp.v2"
12-
"gopkg.in/stomp.v2/frame"
11+
"github.com/go-stomp/stomp"
12+
"github.com/go-stomp/stomp/frame"
1313
)
1414

1515
// Maximum number of pending frames allowed to a client.

0 commit comments

Comments
 (0)