setup main project layout

Co-authored-by: Clément Rehs <clement.rehs@epita.fr>
This commit is contained in:
Jolimaitre Matthieu 2021-11-11 20:28:45 +01:00
parent a71a059feb
commit b95003257d
12 changed files with 963 additions and 4 deletions

15
src/lib/database.rs Normal file
View file

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