Started working on a new tool to poll and browse an SQS queue. This is built using a TUI framework
12 lines
140 B
Go
12 lines
140 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Message struct {
|
|
ID uint64
|
|
ExtID string
|
|
Queue string
|
|
Received time.Time
|
|
Data string
|
|
}
|