tiny-rdm/backend/types/redis_wrapper.go

12 lines
199 B
Go

package types
type ZSetItem struct {
Value string `json:"value"`
Score float64 `json:"score"`
}
type StreamItem struct {
ID string `json:"id"`
Value map[string]any `json:"value"`
}