Add missing inclusion of SingeUseLock type
This commit is contained in:
parent
43b6dbec3e
commit
6bb48f53f4
1 changed files with 1 additions and 0 deletions
|
@ -3,6 +3,7 @@ use std::string;
|
||||||
|
|
||||||
pub use entry::Entry;
|
pub use entry::Entry;
|
||||||
pub use error::StoreError;
|
pub use error::StoreError;
|
||||||
|
pub use single_use_lock::SingleUseLock;
|
||||||
|
|
||||||
pub type Result<T> = RResult<T, StoreError>;
|
pub type Result<T> = RResult<T, StoreError>;
|
||||||
pub type LockedEntry = SingleUseLock<Entry>;
|
pub type LockedEntry = SingleUseLock<Entry>;
|
||||||
|
|
Loading…
Reference in a new issue