mirror of https://github.com/go-redis/redis.git
15 lines
210 B
Go
15 lines
210 B
Go
|
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
|
||
|
}
|