komunikilo 0.1.5

A chaotic communications simulator.
Documentation
1
2
3
4
5
6
7
8
fn main() -> Result<(), std::io::Error> {
    // TODO: FIXME: Remove all usage of `"/tmp"` in strings from the codebase.
    let tmp = std::path::Path::new("/tmp");
    if !tmp.is_dir() {
        std::fs::create_dir(tmp)?;
    };
    Ok(())
}