mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-09-27 13:33:26 +00:00
* Add unit tests for AMQP dissector * Always use UTC as the timezone in the timestamps * Remove the dead code * Remove more dead code * Fix `dissector.Analyze` call Co-authored-by: gadotroee <55343099+gadotroee@users.noreply.github.com>
18 lines
441 B
Modula-2
18 lines
441 B
Modula-2
module github.com/up9inc/mizu/tap/extensions/amqp
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/up9inc/mizu/tap/api v0.0.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.0 // indirect
|
|
github.com/google/martian v2.1.0+incompatible // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
|
|
)
|
|
|
|
replace github.com/up9inc/mizu/tap/api v0.0.0 => ../../api
|