diff options
author | 2025-06-05 03:50:36 +0100 | |
---|---|---|
committer | 2025-06-05 03:51:28 +0100 | |
commit | e313c40d246ac7545a1907621841090664bf61ae (patch) | |
tree | 1eb8d9435da628b6bae242c5cfb89f939d47fc21 /src/lib.rs | |
parent | 811ff64dd08c8835d19c57fd959e42a28d800a53 (diff) | |
download | fj-e313c40d246ac7545a1907621841090664bf61ae.tar.gz fj-e313c40d246ac7545a1907621841090664bf61ae.tar.bz2 fj-e313c40d246ac7545a1907621841090664bf61ae.zip |
feat: database functions
Diffstat (limited to '')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ mod db; mod error; mod task; -mod timestamp; -pub use error::Error; +pub use error::*; +pub use task::*; pub type Result<T> = std::result::Result<T, Error>; |