mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 09:00:20 +08:00
7 lines
112 B
Go
7 lines
112 B
Go
package redisqueue
|
|
|
|
type TimedMessage struct {
|
|
Time int64 `json:"time"`
|
|
Payload string `json:"payload"`
|
|
}
|