Fix goes package path

This commit is contained in:
Jonathan Dextraze 2016-05-30 20:26:58 -07:00
parent 02345ce91a
commit 441da9f3b4

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"github.com/pebbe/zmq4" "github.com/pebbe/zmq4"
"github.com/satori/go.uuid" "github.com/satori/go.uuid"
"bitbucket.org/nicdex/adaptech-goes" "github.com/adymitruk/goes"
"bytes" "bytes"
"errors" "errors"
"flag" "flag"
@ -151,4 +151,4 @@ func sendEvents(socket *zmq4.Socket, events []*goes.Event) {
} }
socket.SendBytes(events[i].Payload.([]byte), 0) socket.SendBytes(events[i].Payload.([]byte), 0)
fmt.Println("<-", len, "events") fmt.Println("<-", len, "events")
} }