sqs-browse: added notion of workspaces in sqs-browse

Also added a tool to generate test tables
This commit is contained in:
Leon Mika 2022-03-24 15:44:57 +11:00
parent cecdbafabb
commit 30dbc4eefe
16 changed files with 239 additions and 60 deletions

View file

@ -3,9 +3,9 @@ package models
import "time"
type Message struct {
ID uint64
ExtID string
Queue string
ID uint64 `storm:"id,increment"`
ExtID string `storm:"unique"`
Queue string `storm:"index"`
Received time.Time
Data string
}