mirror of
https://github.com/Dangoware/dmp-core.git
synced 2025-04-19 13:32:53 -05:00
14 lines
246 B
Rust
14 lines
246 B
Rust
use std::fs::File;
|
|
use std::path::Path;
|
|
|
|
pub fn init() {}
|
|
|
|
fn init_config() {
|
|
let config_path = "./config.toml";
|
|
|
|
if !Path::new(config_path).try_exists().unwrap() {
|
|
File::create("./config.toml").unwrap();
|
|
}
|
|
}
|
|
|
|
fn init_db() {}
|