wip(lib_core): introduce database module

refs: #5
This commit is contained in:
Alexander Navarro 2025-05-15 16:53:11 -04:00
parent ac3ca325f3
commit 1173f9c0d5
3 changed files with 134 additions and 110 deletions

View file

@ -2,6 +2,7 @@ pub mod error;
pub(crate) use error::*;
pub mod task_manager;
mod database;
pub fn add(left: u64, right: u64) -> u64 {
left + right