diff --git a/builder/builder.go b/builder/builder.go index 5bcfd44..09cfad7 100644 --- a/builder/builder.go +++ b/builder/builder.go @@ -3,10 +3,10 @@ package builder import ( "errors" "fmt" - "github.com/mariocandela/beelzebub/parser" - "github.com/mariocandela/beelzebub/protocols" - "github.com/mariocandela/beelzebub/protocols/strategies" - "github.com/mariocandela/beelzebub/tracer" + "github.com/mariocandela/beelzebub/v3/parser" + "github.com/mariocandela/beelzebub/v3/protocols" + "github.com/mariocandela/beelzebub/v3/protocols/strategies" + "github.com/mariocandela/beelzebub/v3/tracer" "io" "net/http" "os" diff --git a/builder/director.go b/builder/director.go index 54b4035..bbacf28 100644 --- a/builder/director.go +++ b/builder/director.go @@ -3,8 +3,8 @@ package builder import ( "context" "encoding/json" - "github.com/mariocandela/beelzebub/parser" - "github.com/mariocandela/beelzebub/tracer" + "github.com/mariocandela/beelzebub/v3/parser" + "github.com/mariocandela/beelzebub/v3/tracer" amqp "github.com/rabbitmq/amqp091-go" log "github.com/sirupsen/logrus" diff --git a/go.mod b/go.mod index 264b700..d03c3a5 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/mariocandela/beelzebub +module github.com/mariocandela/beelzebub/v3 go 1.20 diff --git a/integration_test/integration_test.go b/integration_test/integration_test.go index 3a8813b..89053bf 100644 --- a/integration_test/integration_test.go +++ b/integration_test/integration_test.go @@ -2,9 +2,9 @@ package integration import ( "encoding/json" - "github.com/mariocandela/beelzebub/builder" - "github.com/mariocandela/beelzebub/parser" - "github.com/mariocandela/beelzebub/tracer" + "github.com/mariocandela/beelzebub/v3/builder" + "github.com/mariocandela/beelzebub/v3/parser" + "github.com/mariocandela/beelzebub/v3/tracer" "net" "net/http" "os" diff --git a/main.go b/main.go index e39a9c2..e5dc933 100644 --- a/main.go +++ b/main.go @@ -2,8 +2,8 @@ package main import ( "flag" - "github.com/mariocandela/beelzebub/builder" - "github.com/mariocandela/beelzebub/parser" + "github.com/mariocandela/beelzebub/v3/builder" + "github.com/mariocandela/beelzebub/v3/parser" log "github.com/sirupsen/logrus" ) diff --git a/protocols/protocol_manager.go b/protocols/protocol_manager.go index 8d97b5b..00044fe 100644 --- a/protocols/protocol_manager.go +++ b/protocols/protocol_manager.go @@ -1,8 +1,8 @@ package protocols import ( - "github.com/mariocandela/beelzebub/parser" - "github.com/mariocandela/beelzebub/tracer" + "github.com/mariocandela/beelzebub/v3/parser" + "github.com/mariocandela/beelzebub/v3/tracer" ) type ServiceStrategy interface { diff --git a/protocols/protocol_manager_test.go b/protocols/protocol_manager_test.go index 47adf94..41f8003 100644 --- a/protocols/protocol_manager_test.go +++ b/protocols/protocol_manager_test.go @@ -2,8 +2,8 @@ package protocols import ( "errors" - "github.com/mariocandela/beelzebub/parser" - "github.com/mariocandela/beelzebub/tracer" + "github.com/mariocandela/beelzebub/v3/parser" + "github.com/mariocandela/beelzebub/v3/tracer" "github.com/stretchr/testify/assert" "testing" ) diff --git a/protocols/strategies/http.go b/protocols/strategies/http.go index 86198a4..fcaa714 100644 --- a/protocols/strategies/http.go +++ b/protocols/strategies/http.go @@ -2,8 +2,8 @@ package strategies import ( "fmt" - "github.com/mariocandela/beelzebub/parser" - "github.com/mariocandela/beelzebub/tracer" + "github.com/mariocandela/beelzebub/v3/parser" + "github.com/mariocandela/beelzebub/v3/tracer" "io" "net/http" "regexp" diff --git a/protocols/strategies/ssh.go b/protocols/strategies/ssh.go index 0ad52cb..590c8b7 100644 --- a/protocols/strategies/ssh.go +++ b/protocols/strategies/ssh.go @@ -2,10 +2,11 @@ package strategies import ( "fmt" - "github.com/mariocandela/beelzebub/parser" - "github.com/mariocandela/beelzebub/plugins" - "github.com/mariocandela/beelzebub/tracer" + "github.com/mariocandela/beelzebub/v3/parser" + "github.com/mariocandela/beelzebub/v3/plugins" + "github.com/mariocandela/beelzebub/v3/tracer" "regexp" + "strings" "time" diff --git a/protocols/strategies/tcp.go b/protocols/strategies/tcp.go index 93305bd..a43a3d1 100644 --- a/protocols/strategies/tcp.go +++ b/protocols/strategies/tcp.go @@ -2,8 +2,8 @@ package strategies import ( "fmt" - "github.com/mariocandela/beelzebub/parser" - "github.com/mariocandela/beelzebub/tracer" + "github.com/mariocandela/beelzebub/v3/parser" + "github.com/mariocandela/beelzebub/v3/tracer" "net" "time"