sqs-browse: new tool
Started working on a new tool to poll and browse an SQS queue. This is built using a TUI framework
This commit is contained in:
parent
e070505490
commit
5d1f4c78f4
11 changed files with 413 additions and 0 deletions
11
internal/sqs-browse/models/message.go
Normal file
11
internal/sqs-browse/models/message.go
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
package models
|
||||
|
||||
import "time"
|
||||
|
||||
type Message struct {
|
||||
ID uint64
|
||||
ExtID string
|
||||
Queue string
|
||||
Received time.Time
|
||||
Data string
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue