Files
tiny-rdm/backend/types/zset.go
2023-06-27 15:53:29 +08:00

7 lines
100 B
Go

package types
type ZSetItem struct {
Value string `json:"value"`
Score float64 `json:"score"`
}