mqtt/vendor/github.com/asdine/storm/v3/index/options.go

16 lines
228 B
Go
Raw Normal View History

2022-08-15 23:06:20 +03:00
package index
// NewOptions creates initialized Options
func NewOptions() *Options {
return &Options{
Limit: -1,
}
}
// Options are used to customize queries
type Options struct {
Limit int
Skip int
Reverse bool
}