๐Ÿ“ฆ tychedelia / josefine

๐Ÿ“„ main.rs ยท 10 lines
1
2
3
4
5
6
7
8
9
10use josefine::util::Shutdown;

#[tokio::main]
pub async fn main() {
    let mut path = std::env::current_dir().unwrap();
    path.push("examples/single-node/single-node.tom");
    let shutdown = Shutdown::new();
    josefine::josefine(path.as_path(), shutdown).await.unwrap();
}