Files
herolib/lib/core/redisclient/redisclient_script.v
2024-12-25 19:01:32 +01:00

7 lines
169 B
V

module redisclient
// load a script and return the hash
pub fn (mut r Redis) script_load(script string) !string {
return r.send_expect_str(['SCRIPT LOAD', script])!
}