15 lines
200 B
Rust
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!()
|
|
}
|
|
}
|