dango-core 0.1.1

A music backend that manages storage, querying, and playback of remote and local songs.
Documentation
use std::path::Path;
use std::fs::File;

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() {  

}