Skip to content

Commit

Permalink
rename file for mutex
Browse files Browse the repository at this point in the history
  • Loading branch information
Heiss committed Sep 24, 2023
2 parents 065c2a7 + 28866fd commit a5e5d50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/redis/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ mod generic;
mod helper;
mod integer;
mod list;
mod lock;
mod mutex;
mod rwlock;
mod string;

Expand All @@ -55,6 +55,6 @@ pub use integer::{
Tu32 as Du32, Tu64 as Du64, Tu8 as Du8, Tusize as Dusize,
};
pub use list::{List, ListCache, ListIter};
pub use lock::{Guard, LockError, Mutex};
pub use mutex::{Guard, LockError, Mutex};
pub use rwlock::RwLock;
pub use string::TString as DString;
1 change: 0 additions & 1 deletion src/redis/lock.rs → src/redis/mutex.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use crate::redis::Generic;
use serde::de::DeserializeOwned;
use serde::Serialize;
use std::fmt::Display;
use std::ops::{Deref, DerefMut};
use thiserror::Error;

Expand Down

0 comments on commit a5e5d50

Please sign in to comment.