summary refs log tree commit diff
path: root/src/main.rs
blob: a9f2686f0c7d927405019d7e25ade5ded5f73558 (plain)
1
2
3
4
5
6
7
8
9
mod config;
use config::Config;

fn main() {
    println!("Hello, world!");

    let config_str = include_str!("../config.toml");
    let config = Config::load(config_str.to_string());
}