1
0
mirror of https://github.com/redis/go-redis.git synced 2025-07-28 06:42:00 +03:00

Add: Support for COMMAND LIST command (#2491)

* feat: add support and tests for Command list command

Co-authored-by: Anuragkillswitch <70265851+Anuragkillswitch@users.noreply.github.com>
This commit is contained in:
Anurag Bandyopadhyay
2023-03-19 15:50:42 +05:30
committed by GitHub
parent 30a6f7107e
commit 049d4f9691
3 changed files with 76 additions and 0 deletions

View File

@ -3992,3 +3992,10 @@ func (cmd *FunctionListCmd) readFunctions(rd *proto.Reader) ([]Function, error)
}
return functions, nil
}
type FilterBy struct {
Module string
ACLCat string
Pattern string
}