tiny-rdm/backend/types/redis_wrapper.go

12 lines
199 B
Go
Raw Normal View History

2023-06-27 15:53:29 +08:00
package types
type ZSetItem struct {
Value string `json:"value"`
Score float64 `json:"score"`
}
2023-07-25 19:12:50 +08:00
type StreamItem struct {
ID string `json:"id"`
Value map[string]any `json:"value"`
}