mirror of
https://github.com/Dangoware/dmp-core.git
synced 2025-04-19 13:32:54 -05:00
16 lines
No EOL
281 B
Rust
16 lines
No EOL
281 B
Rust
use std::{path::PathBuf, marker::PhantomData};
|
|
|
|
#[derive(Debug, Default)]
|
|
pub struct Config {
|
|
db_path: Option<PathBuf>,
|
|
}
|
|
|
|
impl Config {
|
|
pub fn new_main() -> Self {
|
|
Config::default()
|
|
}
|
|
//TODO: Add new function for test tube
|
|
pub fn load(&self) {
|
|
|
|
}
|
|
} |