harsh/src/lib/database.rs
Jolimaitre Matthieu b95003257d setup main project layout
Co-authored-by: Clément Rehs <clement.rehs@epita.fr>
2021-11-11 20:28:45 +01:00

15 lines
200 B
Rust

use super::config::Configuration;
///
/// handle the database access
///
pub struct DbManager {
//
}
impl DbManager {
/// constructor
pub fn new(_config: &Configuration) -> Self {
todo!()
}
}