redis/redis_search.go

15 lines
210 B
Go
Raw Normal View History

2023-09-11 14:55:29 +03:00
package redis
import (
"context"
)
type SearchCmdable interface {
}
func (c cmdable) FT_List(ctx context.Context) *StringSliceCmd {
cmd := NewStringSliceCmd(ctx, "FT._LIST")
_ = c(ctx, cmd)
return cmd
}