export the Uuid type from taskchampion

This commit is contained in:
Dustin J. Mitchell 2020-11-24 11:44:21 -05:00
parent d84c156782
commit c8f14d68cb
5 changed files with 5 additions and 6 deletions

View file

@ -34,5 +34,8 @@ pub use task::Priority;
pub use task::Status;
pub use task::{Task, TaskMut};
/// Re-exported type from the `uuid` crate, for ease of compatibility for consumers of this crate.
pub use uuid::Uuid;
#[cfg(test)]
pub(crate) mod testing;