2022-03-22 21:58:42 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
type Message struct {
|
2022-03-24 21:17:52 +00:00
|
|
|
ID uint64 `storm:"id,increment"`
|
|
|
|
ExtID string `storm:"unique"`
|
|
|
|
Queue string `storm:"index"`
|
2022-03-22 21:58:42 +00:00
|
|
|
Received time.Time
|
|
|
|
Data string
|
|
|
|
}
|