Skip to content

Commit 6472bc4

Browse files
authored
Merge pull request #399 from RedisLabsModules/small-fix
Fix the name use within the macro
2 parents 9c012ce + e3d71b2 commit 6472bc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ macro_rules! redis_command {
1010
$mandatory_acl_categories:expr
1111
$(, $optional_acl_categories:expr)?
1212
) => {{
13-
use redis_module::AclCategory;
13+
use $crate::AclCategory;
1414

1515
let name = CString::new($command_name).unwrap();
1616
let flags = CString::new($command_flags).unwrap();

0 commit comments

Comments
 (0)